Estou enfrentando um problema. Para testar meus conhecimentos implementei o Entity em outro projeto.
É bem similar, mas estou tendo um erro ao tentar fazer um update.
Criei uma Conta que tem vários itens. Então modelei as classes: Account, Item, AccountItem.
O erro acontece quando eu recupero uma conta do DB, e adiciono um item.
private void AddItem(Account c, Item i) {
c.Items.Add(new AccountItem { Item = i });
DB.Update(c);
}
Ao rodar o SaveChanges() recebo o erro:
Microsoft.EntityFrameworkCore.DbUpdateConcurrencyException: 'Database operation expected to affect 1 row(s) but actually affected 0 row(s). Data may have been modified or deleted since entities were loaded. See http://go.microsoft.com/fwlink/?LinkId=527962 for information on understanding and handling optimistic concurrency exceptions.'
Poderiam auxiliar? Segue git do projeto. https://github.com/zecaloteiro/DGBar