通过使用 EF、C# 和 ASP.NET 4 Web 应用程序,我使用以下代码从数据库中检索数据并填充 GridView:
using (AshModel am = this.conn.GetContext())
{
IEnumerable<Article> articles =
(from a in am.Article.AsEnumerable()
where (a.CultureName == calture || a.CultureName == 0)
&& a.IsApproved == status
&& a.IsPublished == status
orderby a.AddedDate descending
select a);
IEnumerable<Profile> profiles = am.Profile.AsEnumerable()
.Where(t => articles.Any(a => a.ProfileId == t.ProfileID));
foreach (Article article in articles)
article.UserProfile = profiles
.Where(a => a.ProfileID == article.ProfileId)
.FirstOrDefault();
this.gvArticles.DataSource = articles.ToList();
this.gvArticles.DataBind();
}
但是它非常非常慢,大约需要2分钟才能响应,数据库中只有500条记录!我的错误是什么?我怎样才能提高性能?
谢谢。
最佳答案
您正在某些部分执行 AsEnumerable()
。
当你这样做时,所有的对象都会从数据库中检索出来,然后它们被过滤掉。
如果您删除那些 AsEnumerable()
,它应该会按预期工作。
关于c# - ASP.NET 和 EF 非常非常慢,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23277211/