我正在使用MVC4
在simplemembership provider
Web应用程序中工作,其中使用数据库优先方法来创建映射,即使用Ado.Net生成edmx,但是我遇到了一个问题,即关联有很多 users and roles
与webpages_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并重新生成,但没有成功。谢谢您的帮助。