当前位置: 首页 > 工具软件 > linq2db > 使用案例 >

linq2db Sqlite Insert之后获取插入的自增量ID值

杨选
2023-12-01

方法为:

public static object InsertWithIdentity<T>(this IDataContext dataContext, T obj);


例:

var rowId = db.InsertWithIdentity(newRow);
newRow.Id = (long)rowId;

 

对应的SQL语句为:

SELECT last_insert_rowid()

 

转载于:https://www.cnblogs.com/shanon/p/7127459.html

 类似资料: