Update SplitCodeFirstProvider

This commit is contained in:
sunkaixuan 2022-06-09 18:18:06 +08:00
parent 32bdbe1a0e
commit 625b44b511

View File

@ -18,7 +18,7 @@ namespace SqlSugar
public void InitTables(Type type)
{
var isSplitEntity = type.GetCustomAttributes<SplitTableAttribute>() != null;
var isSplitEntity = type.GetCustomAttribute<SplitTableAttribute>() != null;
if (isSplitEntity)
{
_InitTables(type);