How to run a query in database while using Entity framework?
Kavipriya
Select an image from your device to upload
Entity Framework allows you to execute raw SQL queries for the underlying relational database.Here are some methods used:-DbSet.SqlQuery()DbContext.Database.SqlQuery()DbContext.Database.ExecuteSqlCommand()