What is your favorite ORM (None is a valid answer)?
Zohar Peled

Zohar Peled @peledzohar

About: By day, try to work. By night, try to sleep.

Location:
Israel
Joined:
Sep 9, 2019

What is your favorite ORM (None is a valid answer)?

Publish Date: Mar 29 '20
9 15

Personally, I like Dapper because it gives me complete control over the SQL and is easy to use (well, at least for what I've been using it for).

Comments 15 total

  • Japheth Ezekiel
    Japheth Ezekiel Mar 29, 2020

    Hibernate! Because it's a suite of open source projects around domain models.

  • Kevin Peters
    Kevin PetersMar 29, 2020

    Coming from C# definitely Entity Framework.
    Now that I work mostly with TypeScript I would say TypeOrm

  • Pacharapol Withayasakpunt
    Pacharapol WithayasakpuntMar 29, 2020

    Not a major ORM, but I really like Peewee (in Python).

    Now, I am using TypeScript and I write my own. I am tempted to try Mikro-ORM, though.

    Tried TypeORM, but it disappointed me.

    SQL builder only, like Knex.js is also good, but as you see, I am tempted to write an ORM, if it doesn't exist.

  • Boris Jamot ✊ /
    Boris Jamot ✊ /Mar 29, 2020

    I dont use ORM but gorm is a pretty good one as it's really simple.

  • peterkulik
    peterkulikMar 29, 2020

    Dapper+1

  • Michael Z
    Michael ZMar 29, 2020

    eloquent is amazing.

  • fullstackcoder
    fullstackcoderMar 29, 2020

    From the .Net/C# perspective I go with dapper and petapoco for simpler stuff but entity framework for the heavy ones.

  • Rafael Acioly
    Rafael AciolyMar 29, 2020
    1. Eloquent from Laravel
    2. Django ORM
  • Sergiy Yevtushenko
    Sergiy YevtushenkoMar 29, 2020

    JOOQ. Perhaps because it's not a ORM in traditional sense but rather a query builder (and extremely convenient one).

  • Rodolpho Netto
    Rodolpho NettoMar 29, 2020

    I'm never used ORM but now I'm using Lucid from adonisjs and really liking :)

  • Ghost
    GhostMar 29, 2020

    Used to be just the Django ORM; nowadays is Diesel (Rust) and I'm very interested in going commando with SQLx (also Rust) in the future.

  • Gokul prabhu
    Gokul prabhuMar 29, 2020

    Active record rails

  • Steven Torrence
    Steven TorrenceMar 29, 2020

    I haven't used many ORMs but I really like Active Record with Rails!

  • Rafael Ahrons
    Rafael AhronsMar 29, 2020

    I enjoy a lot working with Entity Framework and Dapper, now that I'm coding in python kind enjoying SQLAlchemy.

    SQLAlchemy it's easy to set up and start coding, don't have a lot of configs to deal or classes, but LINQ in Entity Framework with CodeFirst damn...

Add comment