C# using System.Data.Metadata.Edm

c#, entity-framework

Solution

if you use EF6, you should using System.Data.Entity.Core.Metadata.Edm.

Problem

I am trying to use EntityType class, but I get an error when I try to use it. I did some digging and it appears I need to use this System.Data.Metadata.Edm. I tried this... `using System.Data.` and I enter the . Metadata does not appear as an option....any suggestions I am new at this. I am using .NET Framework 3.5

Original source