Insert Record
Syntax
Insert(entity);Arguments
Description
Example
var orderInstance = new ProductionOrder()
{
ID = repo.NewID(x => x.ID),
ProductID = "ADAM-567-BTO",
Timestamp = DateTime.Now,
//...
};
repo.Insert(orderInstance);
Last updated