Hacker News new | ask | show | jobs
by glub103011 20 days ago
I wish EF Core had first-class support for raw SQL, like Dapper.
2 comments

It does as of EF Core 8 or 9.

One of the challenges for their team I'm assuming is making sure the release notes also get copied to the actual documentation. This was one case where I thought the same thing and only until reading the release notes realized it was already a feature.

It has `context.Database.SqlQuery` and `ExecuteSql`.