Click here to Skip to main content
15,914,924 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
How can I disabling change tracking of entity framework in my web project?
Posted

1 solution

just this(you have to do this for each table you want to disable):
C#
ctx.Customers.MergeOption = MergeOption.NoTracking;
 
Share this answer
 
Comments
nairika vakili 5-Jun-12 12:56pm    
thank you expert

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900