Id, Entity Framework , , IDENTITY .
Id IDENTITY, , Id = 1, Id = 2 ..
, , , "CreatedAt". , DateTime , , , IDENTITY?
, , , , , EF , . , CODE , Seed :
context.categories.AddOrUpdate(
x => x.Code,
new Category { Code="GEN", Text="General"},
new Category { Code="POL", Text="Politics"},
new Category { Code="FAS", Text="Fashion"},
new Category { Code="PEO", Text="People"},
new Category { Code="TEC", Text="Technology"},
new Category { Code="SPO", Text="Sport"},
new Category { Code="LIV", Text="Living"}
);
:
AddOrUpdate