add error check

This commit is contained in:
sunkaixuan 2022-12-26 14:04:39 +08:00
parent cc95ce1837
commit 851c245bb3

View File

@ -181,6 +181,10 @@ namespace SqlSugar
public IInsertable<T> Insertable<T>(T insertObj) where T : class, new()
{
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可以不过功能比较少");
}
return this.Context.Insertable<T>(insertObj);
}