Browse by Tags
All Tags »
EntityFramework (
RSS)
Sorry, but there are no more tags available to filter with.
The entity framework is based on mapping files .csdl and ssdl. Those files are actually put in the resource of the assembly where you wrote your EF code. When invoking the entity framework the connection string has to be parsed. The connection string tells the EF in which assembly resource it will find the mapping files. Unfortunately the default value in the connection string for that is ‘ * ’ . For example: “metadata=res:// * /Data.Seating.csdl|res:// * /Data.Seating.ssdl|res:// * /Data.Seating...