Entity Framework auto generate GUID

后端 未结 8 2083
离开以前
离开以前 2021-02-06 21:16

I am new to EF so here goes.I have a class which contains the following

public class EmailTemplate
{
    public Guid Id { get; set; }

    [MaxLength(2000)]
             


        
8条回答
  •  無奈伤痛
    2021-02-06 21:21

    Set the default sql value of the field to 'newsequentialid()' in the mapping configuration.

提交回复
热议问题