Update db.InsertableByObject

This commit is contained in:
sunkaixuan 2023-06-03 19:36:31 +08:00
parent 067b200e6c
commit e7441526f2

View File

@ -8,8 +8,20 @@ namespace SqlSugar
{
public class CommonMethodInfo
{
internal object Context { get; set; }
internal object Context { get; set; }
public int ExecuteReturnIdentity()
{
if (Context == null) return 0;
var result = Context.GetType().GetMyMethod("ExecuteReturnIdentity", 0).Invoke(Context, new object[] { });
return (int)result;
}
public async Task<int> ExecuteReturnIdentityAsync()
{
if (Context == null) return 0;
var result = Context.GetType().GetMyMethod("ExecuteReturnIdentityAsync", 0).Invoke(Context, new object[] { });
return await (Task<int>)result;
}
public int ExecuteCommand()
{
if (Context == null) return 0;