本文整理汇总了C#中DatabaseContext.Insert方法的典型用法代码示例。如果您正苦于以下问题:C# DatabaseContext.Insert方法的具体用法?C# DatabaseContext.Insert怎么用?C# DatabaseContext.Insert使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DatabaseContext
的用法示例。
在下文中一共展示了DatabaseContext.Insert方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: SaveProduct
public void SaveProduct(Product p)
{
using(var db = new DatabaseContext())
{
var id = db.Products.Max(a => a.ProductId);
id++;
p.ProductId = id;
db.Insert(p);
}
}
示例2: InserWithTableTypeDataObject
public void InserWithTableTypeDataObject()
{
var context = new DatabaseContext(_provider.Object, _settings.Object);
// Act
var expression = context.Insert(() => new Warrior { ID = 1, Name = "test" });
Assert.IsNotNull(expression);
Assert.IsTrue(expression.QueryParts.Parts.Any(p => p.OperationType == OperationType.Insert));
Assert.IsTrue(expression.QueryParts.Parts.Any(p => p.OperationType == OperationType.Values));
Assert.IsTrue(expression.QueryParts.Parts.Where(p => p.OperationType == OperationType.Values).First().Parts.Count() == 5);
Assert.IsTrue(context.QueryStore.Any());
context.Commit();
Assert.IsFalse(context.QueryStore.Any());
}
示例3: InsertWithAnonymDataObject
public void InsertWithAnonymDataObject()
{
var context = new DatabaseContext(_provider.Object, _settings.Object);
// Act
var expression = context.Insert<Warrior>(() => new { ID = 1, Name = "test" });
Assert.IsNotNull(expression);
Assert.IsTrue(expression.QueryParts.Parts.Any(p => p.OperationType == OperationType.Insert));
Assert.IsTrue(expression.QueryParts.Parts.Any(p => p.OperationType == OperationType.Values));
// only insert the properties that are provided
Assert.IsTrue(expression.QueryParts.Parts.Where(p => p.OperationType == OperationType.Values).First().Parts.Count() == 2);
Assert.IsTrue(context.QueryStore.Any());
context.Commit();
Assert.IsFalse(context.QueryStore.Any());
}