我正在尝试使用以下代码获取每个表的记录数。但它根本不起作用。 GetMethod(“Count”)返回null。我可能会做一些非常愚蠢的事情,我不知道该怎么办。
var list = new List<TableInfoContainer>
{
new TableInfoContainer{ObjectSetPropertyName="table1"},
new TableInfoContainer{ObjectSetPropertyName="table2"},
new TableInfoContainer{ObjectSetPropertyName="table3"},
};
using (var context = new DBEntities())
{
list.ForEach(x =>{
var property = context.GetType().GetProperty(x.ObjectSetPropertyName);
x.RecordCount = (int)typeof(IQueryable).GetMethod("Count").Invoke(property, null);
});
}
非常感谢帮助!
谢谢, yokyo