标签:new code style sql nbsp pre 增量 插入 bsp
方法为:
public static object InsertWithIdentity<T>(this IDataContext dataContext, T obj);
例:
var rowId = db.InsertWithIdentity(newRow); newRow.Id = (long)rowId;
对应的SQL语句为:
SELECT last_insert_rowid()
linq2db Sqlite Insert之后获取插入的自增量ID值
标签:new code style sql nbsp pre 增量 插入 bsp
原文地址:http://www.cnblogs.com/shanon/p/7127459.html