ICodeFirst add GetConfigEntity

This commit is contained in:
28810
2019-02-22 09:16:07 +08:00
parent be84f6dbd6
commit fb1871e558
9 changed files with 28 additions and 2 deletions

View File

@ -242,5 +242,6 @@ namespace FreeSql.Sqlite {
}
public ICodeFirst ConfigEntity<T>(Action<TableFluent<T>> entity) => _commonUtils.ConfigEntity(entity);
public ICodeFirst ConfigEntity(Type type, Action<TableFluent> entity) => _commonUtils.ConfigEntity(type, entity);
public TableAttribute GetConfigEntity(Type type) => _commonUtils.GetConfigEntity(type);
}
}