标签: c# entity-framework-6 code-first
我有一个名为A的类,其结构如下:
A类{ public int c1 {get;组; } public int c2 {get;组; } public int c3 {get;组; } public int c4 {get;组; } }
我想像这样首先用ef6代码创建两个单独的唯一索引
{c1,c2,c3} {c1,c4}
如您所见,这些唯一索引中使用了列“ c1”。