尝试更新asp.net core 2.0 EF中的数据

时间:2017-09-24 09:58:07

标签: entity-framework asp.net-core modelstate asp.net-core-2.0

嘿,我一直在努力弄清楚为什么我无法更新数据库中的属性。我一直在关注这里的文档https://docs.microsoft.com/en-us/aspnet/core/data/ef-mvc/update-related-data

var customerToUpdate = await _context.ApplicationUser
            .Include(i => i.Customer)
            .SingleOrDefaultAsync(s => s.Id == id);
        if (await TryUpdateModelAsync(
            customerToUpdate,
            "",
            i => i.

我无法更新任何属性,而是获得此enter image description here

我一直在努力改变我的dbset,但它们似乎很好。 (我想我甚至不需要为applicationUser创建一个dbset,但我尝试了并且没有任何区别)。

enter image description here

我的ApplicationUser与Customer有0-1的关系,其中客户的ApplicationUserId具有主键。它看起来像这样:

enter image description here

真的没事了试试我希望我没有错过任何明显的东西。谢谢你的帮助。

0 个答案:

没有答案