Skip to content

Instantly share code, notes, and snippets.

@mikependon
Created July 10, 2020 11:18
Show Gist options
  • Save mikependon/c4b4497fbb2d03f0a3f216d377af1803 to your computer and use it in GitHub Desktop.
Save mikependon/c4b4497fbb2d03f0a3f216d377af1803 to your computer and use it in GitHub Desktop.
EF_RawSql_Direct
using (var context = new DatabaseContext())
{
var customers = context
.People
.FromSqlRaw("SELECT * FROM [dbo].[Person];");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment