The mapping of CLR type to EDM type is ambiguous with EF 6 & 5?

Don’t use classes with the same unqualified name – EF uses only class names to identify the type mapped in EDMX (namespaces are ignored) – it is a convention to allow mapping classes from different namespaces to single model. The solution for your problem is to name your classes in BLL differently.

Leave a Comment