I hav a code where Include method contains lowerd name of navigation property (Include(“descriptions”) whereas its name is Descriptions). It executes well. So I conclude method is case insensitive. Is it always by default or should some parameters be tuned?
I hav a code where Include method contains lowerd name of navigation property (Include(descriptions)
Share
Maybe I didn’t understand the question correctly, but maybe you can use lambda in this case?
SQL Server by default is case-insensitive and Entity Framework is using (T-)SQL, so that’s probably the reason why it doesn’t matter.