How to make MS-SQL stored function availabe in LINQ expressions if you use Entity framework?
The SQL function was created using CREATE FUNCTION MyFunction(@name) ...). I was hoping to access it similarly to this:
var data = from c in entities.Users where MyFunction(c.name) = 3;
Unfortunately, I only have .NET 3.5.
source
share