Using below code,
public class UserProfile
{
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public Guid Id { get; set; }
// more properties here
}
I thought EF is using newguid(), but when I check database, I see the default value is newsequentialid()
Is this the default behavior of EF? Or it is because I'm using SQL Server 2017?