I have a class Product and a complex type AddressDetails
Product
AddressDetails
public class Product { public Guid Id { get; set; } public Addres
On EF6 you can configure the complex type:
modelBuilder.Types() .Configure(c => c.Ignore(p => p.Country))
That way the property Country will be always ignored.