我有3个表如下:
http://images.cnblogs.com/cnblogs_com/guozili/390921/o_ef.png
可以支持如下:
class Product
int Id {get;set;}
string Name {get;set;}
List<Picture> Picture {get;set;}
class Picture
...
[ForeignKey("Product.ProductId".....when type=1)]
int ModelId {get;set;}
我希望它可以通过映射属性或诸如“.ToTable()...WithMany(c=>..).Map(.....”来工作吗?这些可以吗?