Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Execute Raw SQL in EF Core 6.0.6

I need to execute SQL Command in MS SQL, which is already connected via EF Core 6.0.6.

First thing I found is: Execute RAW SQL on DbContext in EF Core 2.1

So I tried this:

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

db.Database.Query<Question>("COMMAND");

But it says that DatabaseFacade does not contain the Query method. Same thing with these ones:

db.Query<Question>("COMMAND");

db.Database.ExecuteSqlCommand("COMMAND");

db.Database.SqlQuery("COMMAND");

db.Database.GetDbConnection();

A little explanation:

  1. db is an instance of the ApplicationDbContext class which inherits from IdentityDbContext from the Microsoft.AspNetCore.Identity.EntityFrameworkCore package

  2. Question is my class, instances of which are stored in the Questions table in my database

So my main question is: Is there a way of executing raw SQL in EF Core 6.0.6?

I would be very grateful for any materials or tips in this matter.

>Solution :

Did you try this?

var questions = db.Questions.FromSqlRaw("SELECT * FROM Questions").ToList();

Make sure that you have using Microsoft.EntityFrameworkCore on top

Or if you have access to ApplicationDbContext via service provider you would try something like this:

var context = serviceScope.ServiceProvider.GetService<ApplicationDbContext>();

context.Database.ExecuteSqlRaw("SQL");
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading