DatabaseGenerated Guid太可预测了吗?

时间:2018-10-09 08:42:54

标签: c# entity-framework data-annotations guid

我查看了由数据注释生成的导航

  

DatabaseGenerated(DatabaseGeneratedOption.Identity)

在我的sql数据库中。这太可预测了,我想要更专业的东西。有什么想法可以实现吗?

screenshot guids

谢谢你。

1 个答案:

答案 0 :(得分:0)

尝试此代码

public class BaseEntity
{
    public BaseEntity()
    {
        Id = Guid.NewGuid();
    }
    [Key]
    public Guid Id { get; set;}
}

public class SomeClass : BaseEntity
{
    ...
}