获取所有角色,但选择一些帮助
我遇到了一个问题,我需要从似乎只具有所有功能的集合中删除某些项目。
我的想法是获取完整的集合,然后删除不需要的项目。然后获取新的集合并将其绑定到我需要的任何内容。
例如如何获得除管理员之外的所有角色?
Roles strRoles = Roles.GetAllRoles()
RoleList.DataSource = (Roles) roles; //Roles.GetAllRoles();
RoleList.DataBind();
或者我如何获得所有用户,但说 user123
MembershipUserCollection users = Membership.GetAllUsers();
UserList.DataSource = users;
UserList.DataBind();
提前致谢, -斯科特
I have run into a problem where I need to remove certain items from collections that seem to only have get all functions.
My Idea is to get the full collection and then remove the unneeded items. Then take that new collection and bind it to whatever I need.
For example How do I get all the roles except administrator?
Roles strRoles = Roles.GetAllRoles()
RoleList.DataSource = (Roles) roles; //Roles.GetAllRoles();
RoleList.DataBind();
or How do I get all users but say user123
MembershipUserCollection users = Membership.GetAllUsers();
UserList.DataSource = users;
UserList.DataBind();
Thanks in advance,
-Scott
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Where LINQ 扩展方法来完成此操作。 LINQ 扩展方法对实现 IEnumerable<> 的集合进行操作。界面。对于第一个示例,您可以执行以下操作:
对于第二个示例:
首先调用 Cast 方法会将集合转换为
Membershipusers
的IEnumerable
。You can use the Where LINQ extension method to accomplish this. LINQ extension methods operate on collections that implement the IEnumerable<> interface. For your first example you could do the following:
For your second:
Calling the Cast method first will convert the collection to an
IEnumerable
ofMembershipusers
.