本文整理汇总了C#中OrmLiteConnectionFactory.LastInsertId方法的典型用法代码示例。如果您正苦于以下问题:C# OrmLiteConnectionFactory.LastInsertId方法的具体用法?C# OrmLiteConnectionFactory.LastInsertId怎么用?C# OrmLiteConnectionFactory.LastInsertId使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类OrmLiteConnectionFactory
的用法示例。
在下文中一共展示了OrmLiteConnectionFactory.LastInsertId方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Can_retrieve_LastInsertId_from_inserted_table
public void Can_retrieve_LastInsertId_from_inserted_table()
{
using (var db = new OrmLiteConnectionFactory(ConnectionString, FirebirdDialect.Provider).Open())
{
db.CreateTable<ModelWithIdAndName>(true);
var row1 = ModelWithIdAndName.Create(5);
var row2 = ModelWithIdAndName.Create(6);
db.Insert(row1);
var row1LastInsertId = db.LastInsertId();
db.Insert(row2);
var row2LastInsertId = db.LastInsertId();
var insertedRow1 = db.SingleById<ModelWithIdAndName>(row1LastInsertId);
var insertedRow2 = db.SingleById<ModelWithIdAndName>(row2LastInsertId);
Assert.That(insertedRow1.Name, Is.EqualTo(row1.Name));
Assert.That(insertedRow2.Name, Is.EqualTo(row2.Name));
}
}