using System.ComponentModel.DataAnnotations;
public class UserArmy
{
[Key, Column(Order = 1)]
public Guid UserId { get; set; }
[Key, Column(Order = 2)]
public int UnitId { get; set; }
public int Quantity { get; set; }
}
这是我的模型课。我正在使用实体框架,代码优先方法。可识别 [Key] 属性,但无法识别 Column(Order=x)。
我错过了一些需要包含的东西吗?
谢谢 :)