我有一个名为Sale的课程
public class Sale
{
public int Id { get; set; }
public string TrNo { get; set; }
public DateTime Date { get; set; }
public int CustomerID { get; set; }
public ObservableCollection<SaleDetail> SaleDetails { get; set; }
}
在数据库中,我想要Id
作为Auto Increment
列和TrNo
作为Primary Key
列。
请先告诉我如何使用 EF5 代码执行此操作。
谢谢。