mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-18 17:48:11 +08:00
-
This commit is contained in:
@@ -35,6 +35,7 @@ namespace OrmTest.UnitTest
|
||||
}, t1.Key, t1.Value, "Insert t1 error"
|
||||
);
|
||||
|
||||
|
||||
//Insert reutrn Command Count
|
||||
var t2 = db.Insertable(insertObj).ExecuteCommand();
|
||||
|
||||
@@ -114,6 +115,9 @@ INSERT INTO [Student]
|
||||
insertObjs.Add(new Student() { Name = "name" + i });
|
||||
}
|
||||
var s9 = db.Insertable(insertObjs.ToArray()).InsertColumns(it => new { it.Name }).With(SqlWith.UpdLock).ToSql();
|
||||
|
||||
insertObj.Name = null;
|
||||
var t10 = db.Insertable(insertObj).ExecuteCommand();
|
||||
}
|
||||
|
||||
public SqlSugarClient GetInstance()
|
||||
|
@@ -1,4 +1,5 @@
|
||||
using System.Collections.Generic;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Data;
|
||||
using System.Data.SqlClient;
|
||||
using System.Linq;
|
||||
@@ -79,6 +80,7 @@ namespace SqlSugar
|
||||
int i = 0;
|
||||
foreach (var par in pars)
|
||||
{
|
||||
if (par.Value == null) par.Value = DBNull.Value;
|
||||
var p = new SqlParameter();
|
||||
p.ParameterName = par.ParameterName;
|
||||
p.UdtTypeName = par.UdtTypeName;
|
||||
|
Reference in New Issue
Block a user