Skip to content

Instantly share code, notes, and snippets.

@oguzhankircali
Last active March 29, 2019 06:47
Show Gist options
  • Save oguzhankircali/405a1b513732e34b64578c1dfb63061c to your computer and use it in GitHub Desktop.
Save oguzhankircali/405a1b513732e34b64578c1dfb63061c to your computer and use it in GitHub Desktop.
Calling user defined database functions in Entity Framework
List<MyClass> retval = db.Database.SqlQuery<MyClass>(String.Format(@”select * from dbo.fonksiyonum({0})”, id)).OrderBy(p => p.Sinif).ToList<MyClass>();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment