No problem but only strange thing is this code. Because you didn't use this, but i had to use this. I got an existing db, maybe the problem cause of this.
builder.Ignore<MyUser>();
I fixed this but i used this code in MigrationDbContext.OnModelCreating
builder.Ignore<MyUser>();
Fyi.
Is this AppUser name necessary ? Because we removed it and we added a new entity like MyUser.
I had to use
builder.Ignore<MyUser>();
This code when dbmigration model creating but in your demo application you didn't use this option. If i don't use this, it shows "I can't map ExtraProperties" error when trying to add a new migration.
Hi,
First of all i thank you, but Option 2 saves property as ExtraProperty which is not we want because our property is a real DB field. I assume Option 3 is the same. I will try Option 1, i will write the result.
I think there is no request body in chrome developer tools. Also second Request header says 204 No Content.
Hi @liangshiwei,
I sent you a mail. I did a small demo application. Did you get the email?
Thanks.
Nope optimistic concurrency failure again. I tried many usage combination of UOW. Transactional UOW etc. Maybe i need an example project.