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; }
}
これが私が持っているモデルクラスです。Entity Framework、Code First アプローチを使用しています。[Key] 属性は認識されますが、Column(Order=x) は認識されません。
含める必要があるものを見逃していますか?
ありがとう :)