This commit is contained in:
sunkaixuan
2017-05-24 13:43:08 +08:00
parent 998546ef9c
commit 83e60ad446
2 changed files with 7 additions and 1 deletions

View File

@@ -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()

View File

@@ -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;