Entity Framework does not display the last changes from the database, but after sometime it shows the updated contents. I don't any special cache on the server or on the page. Thank in advance. Jack Here is the code i use to get the list, that has problem:
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
};