如何解决EF6 动态获取表
我首先将 Entity Framework 6 与数据库一起使用。尝试显示有关每个表 (DbSet
) 的信息,包括条目数。
最后,我想显示 DbContext
中任何选定表的一些(前 200)行。我尝试使用没有硬编码特定类型的反射来实现这一点。
using (MyDataEntities pd = new MyDataEntities())
{
var Metadata = ((IObjectContextAdapter)pd).ObjectContext.MetadataWorkspace;
var tables = Metadata.GetItemCollection(DataSpace.sspace)
.GetItems<EntityContainer>().Single().BaseEntitySets.OfType<EntitySet>()
.Where(s => !s.MetadataProperties.Contains("Type")
|| s.MetadataProperties["Type"].ToString() == "Tables").ToList();
// This is working.
var set = pd.GetType().GetProperty("MyType1").GetValue(pd);
var theSet = set as DbSet<MyType1>;
if (theSet != null)
{
int count = theSet.Count(); // This is working.
var rows = theSet.ToList(); // This is working.
}
foreach (var t in tables)
{
dynamic dbset = pd.GetType().GetProperty(t.Name).GetValue(pd);
int count = dbset.Count(); // This is not working
var rows = dbset.ToList(); // This is not working
}
}
我收到异常:
Microsoft.CSharp.RuntimeBinder.RuntimeBinderException:''System.Data.Entity.DbSet<MyAppName.MyType1>' does not contain a deFinition for 'Count''
Microsoft.CSharp.RuntimeBinder.RuntimeBinderException:''System.Data.Entity.DbSet<MyAppName.MyType1>' does not contain a deFinition for 'ToList''
这甚至可能是我正在尝试的吗?
解决方法
我将动态值转换为 IQueryable,然后就可以像查询一样使用它了。
foreach (var t in tables)
{
dynamic dbset = pd.GetType().GetProperty(t.Name).GetValue(pd);
var query = dbset as IQueryable;
var result = query.ToListAsync().Result;
int count = result.Count(); // This is working
var rows = result.ToList(); // This is working
}
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。