How can I implement String.Concat(object, object) to L2E framework?
- by Eran Betzalel
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.