实体数据源查询内部联接
本文关键字:内部 查询 数据源 实体 | 更新日期: 2023-09-27 18:36:08
我有一个包含 3 个表的数据库:
User{UserId,UserName}
Role{RoleId,RoleName}
User_Role{UserId,RoleId}
此查询:
int userIdPassByUrl = 0;
MyDbContext ctx = new MyDbContext();
var query = (from role in ctx.Role
join userRole in ctx.User_Role on role.RoleId equals userRole.RoleId
where userRole.UserId == userIdPassByUrl
select new { role.RoleId, role.RoleName }).Distinct();
我需要在具有实体数据源的网格视图中显示上述查询的结果,无论是编码还是在设计模式下设置它。
这是我的实体数据源:
<asp:EntityDataSource ID="EdsRolesByUser" runat="server"
ConnectionString="name=myDbEntities"
DefaultContainerName="myDbEntities" EnableFlattening="False"
EntitySetName="Roles" EntityTypeFilter="Role"
Select="it.[RoleId], it.[RoleName]">
</asp:EntityDataSource>
任何帮助将不胜感激,谢谢。
终于明白了。必须修改实体数据源,删除实体集名称和实体类型筛选器属性,并添加命令文本,如下所示:
CommandText="SELECT DISTINCT userRole.RoleId, role.RoleName FROM Role AS role
INNER JOIN User_Role as userRole
ON role.RoleId = userRole.RoleId
WHERE userRole.UserId = @UserIdPassbyUrl"
此链接帮助我:http://msdn.microsoft.com/en-us/library/aa697427(v=vs.80).aspx