-1
I have a nullable int field and that within a lambda I need to popular a nonnullable property. If I do this:
campo1 = Convert.ToInt32(campo2);
I take this mistake:
Notsupportedexception: LINQ to Entities does not recognize the method 'Int32 Toint32(System.Object)' method, and this method cannot be Translated into a store Expression
How do I load the nullable property from a nullable?
What version of EF, young?
– Jéf Bueno