This is my configuration where my primary key column is NetworkId
and it's DatabaseGeneratedOption
is Identity
.
public NetworkConfiguration() : base()
{
this.HasKey(e => e.NetworkId);
Property(e => e.NetworkId).HasDatabaseGeneratedOption(DatabaseGeneratedOption.Identity);
}
This value starts from 1 always can I make it to start with 0?