我要在表中将ID保存为降序顺序 使用代码优先
但是我不知道如何
我的模特:
public class AccountChangeHistory
{
[Key]
public int Id { get; set; }
public int CustomerId { get; set; }
public string Action { get; set; }
public DateTime DateTime { get; set; }
[ForeignKey("CustomerId")]
public virtual Customer Customer { get; set; }
}