在MVC4中映射关联

时间:2018-12-19 01:35:24

标签: c# entity-framework asp.net-mvc-4 edmx db-first

我正在使用MVC4simplemembership provider Web应用程序中工作,其中使用数据库优先方法来创建映射,即使用Ado.Net生成edmx,但是我遇到了一个问题,即关联有很多 users and roleswebpages_UsersInRoles之间的许多关系虽然可以在xml文件中看到,但无法映射到edmx图上。

xml文件的一部分

   <?xml version="1.0" encoding="utf-8"?>
<edmx:Edmx Version="3.0" xmlns:edmx="http://schemas.microsoft.com/ado/2009/11/edmx">
 <!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) -->
  <edmx:Designer xmlns="http://schemas.microsoft.com/ado/2009/11/edmx">
    <!-- Diagram content (shape and connector positions) -->
    <edmx:Diagrams>
      <Diagram DiagramId="da578852e36d4c88b7bb4f7c5b7ae95f" Name="Diagram1">

        <AssociationConnector Association="SchoolModel.webpages_UsersInRoles" ManuallyRouted="false" />
      </Diagram>
    </edmx:Diagrams>
  </edmx:Designer>
</edmx:Edmx>

是否有其他替代方法可以完成此任务?我尝试过here也删除了整个edmx并重新生成,但没有成功。谢谢您的帮助。

0 个答案:

没有答案