如何在 C# 中将 class 对象数据复制到 edmx 对象

How to copy class object data to edmx object in c#

我在 MVC 工作。用户将输入大约 50 个字段的数据,我将从视图的 class 对象中获取这些数据。

那么,如何将此 class 对象复制到 edmx table 对象,以便将数据保存到 C# 中的数据库中?

尝试在您的项目中添加 http://automapper.org/,然后在您的代码中编写类似的内容。

var address = Mapper.Map<Address>(yourViewModel);
   ......................
   .......................