Synchronization code

This commit is contained in:
sunkaixuan 2023-09-24 16:17:01 +08:00
parent 4673fff56f
commit 681bb6682e

View File

@ -550,6 +550,10 @@ namespace SqlSugar
{
return true;
}
if (method?.DeclaringType?.FullName?.Contains("Furion.InternalApp")==true)
{
return false;
}
Type attType = typeof(AsyncStateMachineAttribute);
var attrib = (AsyncStateMachineAttribute)method.GetCustomAttribute(attType);
return (attrib != null);