Uddate demo

This commit is contained in:
sunkaixuna
2022-02-01 14:07:08 +08:00
parent 92746e9950
commit e45a5b6cb4

View File

@@ -317,7 +317,11 @@ namespace SqlSugar
}
else
{
return UtilConstants.AssemblyName + "." + CustomTypeName + name;
if (!string.IsNullOrEmpty(CustomTypeName))
{
type = CustomTypeName;
}
return UtilConstants.AssemblyName + "." + type + name;
}
}