This commit is contained in:
sunkaixuan 2022-12-26 14:04:51 +08:00
parent 851c245bb3
commit 40051a169e

View File

@ -183,7 +183,7 @@ namespace SqlSugar
Check.Exception(typeof(T).FullName.Contains("System.Collections.Generic.List`"), " need where T: class, new() ");
if (typeof(T).Name == "Object")
{
Check.ExceptionEasy("Object type use db.InsertableByObject(obj).ExecuteCommand()", "检测到T为Object类型请使用 db.InsertableByObject(obj).ExecuteCommand()Insertable不支持objectInsertableByObject可以不过功能比较少");
Check.ExceptionEasy("Object type use db.InsertableByObject(obj).ExecuteCommand()", "检测到T为Object类型请使用 db.InsertableByObject(obj).ExecuteCommand()Insertable不支持objectInsertableByObject可以(缺点:功能比较少)");
}
return this.Context.Insertable<T>(insertObj);
}