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)]
After a long investigation, I found out that in EF Core 3.1 you need to use
builder.Property(e => e.Id).ValueGeneratedOnAdd();