我有这个模特
>>> print(x.to_base_units().to_compact())
100.0 gram / meter ** 3
但是当我创建迁移时,Id主键不是身份
public class Ubicacion
{
public int Id { get; set; }
[Required]
public Decimal CoordenadaX { get; set; }
[Required]
......
}
我已经尝试过另一次迁移
CreateTable(
"dbo.Ubicacion",
c => new
{
Id = c.Int(nullable: false),
CoordenadaX = c.Decimal(nullable: false, precision: 18,
但是提交的文件仍然不是身份
请问有什么主意吗? 问候