Entity Framework Core 中,基类默认主键名称为Id
那么在实际表设计中主键名称不一定为Id
那么我们要修改映射,修改如下
[Column("TogeId")] public override long Id { get; set; }
这样就可以解决主键名称不为Id的情况。