1
實體框架不顯示數據庫的最新更改,但在某段時間後顯示更新的內容。我沒有任何特殊的緩存在服務器或頁面上。 提前致謝。 傑克 這是我用來獲取列表中的代碼,有問題:實體框架不顯示數據庫的最新更改
var m =
from relation in ett.Article_Relations
from article in ett.Article_Articles
from content in ett.Article_Contents
where relation.MenuItemID == id
where relation.Article_Articles.ArticleID == article.ArticleID
where content.LanguageID == LanguageID
where article.ArticleID == content.Article_Articles.ArticleID
select new ArticleViewModel
{
ArticleID = article.ArticleID,
IsActive = article.IsActive,
Author = article.ArticleAuthor,
Content = content,
DateCreated = article.DateCreated
};
謝謝你的回答。它給了我一些想法問題的可能性。現在我實際上通過直接在控制器中編寫代碼(我的項目在MVC中)而不是調用窗體公共類來避免(但未解決)此問題。 – Jack 2010-05-06 16:08:54