I'm successfully deleting entity from SQLite database by datagrid delete row event. This can be confirmed by SQLite Manager. However after running this delete event and ...SaveChanges()... command I still get the deleted entities after using ...GetLocal()...
I am struggling to understand something with change tracking in EF6....I have code similar to this....public class SomeClass
{
private List<User> _users;
private DAL _dal;
public void ProcessUsers()
{
_users = _dal.GetUsers();
...
I simply want to update an industry property of a client object. To do so, I retrieve the client from the DB using a repository. This would result in my industry (example id:149) being tracked. ... var client = await _clientRepository.GetAsync(...