我有办法
void InitAndLoadTables(DbConnection cnctn, Dictionary<string, DbTableLoadParameters> tableNamesAndParameters)
字典可以有一定数量的表格。 每张表格对应一个类别。
当我通过所有表格检索时,我要说通用方法。
public void Init<T>(string tableName)
所有表格。 我试图将DbTableLoadPara计作为财产的那类财产列为一类。
Type ObjectType { get; set; }
并且使用“Init”一词。 这并不可行。 甚至有可能这样做? 如果表数固定下来,我可能会使InitAndLoadTables等通用表格成为可能。
InitAndLoadTables<T, K, V>
but it isn t. So is only possibility to call Init elsewhere like
Init<Orders>("Orders");
附录