EF 4.0 model caching the data, and does not detect the modified data

被刻印的时光 ゝ 提交于 2019-12-17 20:34:46

问题


I am developing ASP.NET application and I have problem with the EF 4.0 model.

The EF model detects the newly added and deleted data, but not the modified data from the database.

Here is an example of the problem what I have.

A- Database:

Script to generate the "Employees" database table

CREATE TABLE [dbo].[Employees]
  (
   [id] [int] IDENTITY(1, 1)
         NOT NULL,
   [name] [nvarchar](50) NULL,
   CONSTRAINT [PK_Employees] PRIMARY KEY CLUSTERED ( [id] ASC )
    WITH ( PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF,
        IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON,
        ALLOW_PAGE_LOCKS = ON ) ON [PRIMARY]
  )
ON [PRIMARY]

B- Application:

Here is a link for a sample project Click Here.

Steps to reproduce the error:

1- Create the database and run the script to create the table.

2- Insert test data in the employees table, and run the application. the data will be loaded in the default page.

3- Change the connection string and run the application.

3- Update some values in the database (directly form the sql). and refresh the page

You will find that the application still displaying the old data, while if you add or delete item from the table, it's added or removed from the view respectively.

Thanks in advance for your help.


回答1:


This is correct behavior based on essential concepts of ORM. It also works same for Linq to SQL. The reason for this is design pattern called IdentityMap which ensures that each entity identified by its key is created only once for object context. So your first query creates entites but your subsequent queries don't recreate them - they already exists. The full description of this problem is described in this very nice article.




回答2:


You can avoid this by using a new object of the entity model in your code in every method. Or you can read more information in the following answer to the same question in the MSDN, Click Here



来源:https://stackoverflow.com/questions/3617987/ef-4-0-model-caching-the-data-and-does-not-detect-the-modified-data

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!