I have two long type columns that I want to concat during sql query. Using Linq to Entities making it impossible, because it only supports String.Concat(string, string).
I’d like to know how can I implement this function myself and add it to the L2E framework.
What’s the point in doing the concat in SQL ? You can do it in a projection when you receive the data :
I don’t think that’s possible, unless you want to implement your own EF provider…