Browse by Tags

All Tags » Entity Framework (EF) » Bug (RSS)

Bug with IQueryable and yield syntax: System.BadImageFormatException "An attempt was made to load a program with an incorrect format. (Exception from HRESULT: 0x8007000B)"

I find a bug if you mix IQueryable and yield syntax. After Diego has changed a little bit my sample to reproduce it, this is the code he sent to the C# team: class Program { static void Main( string [] args) { try { GetCategoryProductsUsingQueryable(...

TPT with designer can generate errors 3034 or 3021

I found two cases of errors generated by the EDM designer when you want to do TPT. Error 3034: Imagine the following scenario: A table Contacts ContactID (PK) A table Employees ContactID (PK) OfficeID (Nullable, FK to Offices.OfficeID) A table Offices...