标签: c# .net sql-server database entity-framework
我有一个EmailId实际上是一个可选的,但我不需要两个电子邮件条目相同但它可以有空值。
EmailId
[Index(IsUnique = true)] [StringLength(100)] public string Email { get; set; }
我使用[Index(IsUnique = true)]此属性确保唯一性。
[Index(IsUnique = true)]
如何同时允许多个空值并确保非空列的唯一身份?
由于