mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-08-23 21:56:03 +08:00
28 lines
549 B
C#
28 lines
549 B
C#
namespace SqlSugar
|
|
{
|
|
public class SqliteInsertBuilder : InsertBuilder
|
|
{
|
|
public override string SqlTemplate
|
|
{
|
|
get
|
|
{
|
|
if (IsReturnIdentity)
|
|
{
|
|
return @"INSERT INTO {0}
|
|
({1})
|
|
VALUES
|
|
({2}) ;SELECT LAST_INSERT_ROWID();";
|
|
}
|
|
else
|
|
{
|
|
return @"INSERT INTO {0}
|
|
({1})
|
|
VALUES
|
|
({2}) ;";
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|