|
|
@ -76,8 +76,7 @@ namespace CoviDok.Data.MySQL |
|
|
|
|
|
|
|
public async Task UpdateCase(int id, Case Case, Update update) |
|
|
|
{ |
|
|
|
Case c = new Case { Id = id }; |
|
|
|
context.Attach(c); |
|
|
|
Case c = await context.Cases.FindAsync(id); |
|
|
|
context.Entry(c).State = Microsoft.EntityFrameworkCore.EntityState.Modified; |
|
|
|
string[] forbidden = { "Updates" }; |
|
|
|
PropertyCopier<Case>.Copy(Case, c, forbidden); |
|
|
|