( " " )
Entity Framework 4.1 , WPF - . Local DbSet<T>. Local ObservableCollection<T>, T, ( Deleted).
Local , . : ...
dbContext.Customers.Where(c => c.Country == "Alice Wonderland").Load();
... ObservableCollection...
ObservableCollection<Customer> items = dbContext.Customers.Local;
... ItemsSource WPF ItemsControl. / ...
items.Add(newCustomer);
items.Remove(oldCustomer);
... / / EF. SaveChanges / / .
/ ...
dbContext.Customers.Add(newCustomer);
dbContext.Customers.Remove(oldCustomer);
... Local WPF .
Local EF 4.1.