views:

6

answers:

0

Entity Framework 4:

Following code cause entity Employee property changed:

var results = from p in this.ObjectContext.SearchEmployeeFollowup()
                          select p;

List<Employee> temps = new List<Employeer>(results);

But I don't want the property changed event fired at this time.

How to resolve this issue?