使用字符串数组过滤SelectListItem.-mvc
我的 mvc 应用程序中有两个变量,如下所示。
public IEnumerable<SelectListItem> AvailableAgents { get; set; }
public string[] AvailableAgentSelected { get; set; }
public IEnumerable<SelectListItem> AgentsNotselected{ get; set; }
可用代理包含所有代理列表项。并且AvailableAgentSelected是一个字符串数组,它仅包含选定代理的值。
从上面的数据中,我如何将未选择的代理存储到AgentsNotselected(意味着,选择其值不在AvailableAgentSelected中的所有代理列表项)。我想要一种有效的方法来做到这一点。
I have tow variables in my mvc application .that is shown below
public IEnumerable<SelectListItem> AvailableAgents { get; set; }
public string[] AvailableAgentSelected { get; set; }
public IEnumerable<SelectListItem> AgentsNotselected{ get; set; }
The AvailableAgents contains all agent list items. and AvailableAgentSelected is a string array it contains values of selected agents only..
From the above data how can i store the agents who are not selected to AgentsNotselected (means,select all agent list items whose values are not in AvailableAgentSelected ) . I want an efficeiant way to do it .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的最后一个属性有两种类型,我认为它是 IEnumerable。
我没有尝试过,但这应该可行,尽管“高效”部分值得怀疑。
Your last property has two types, I asume it's IEnumerable.
I didn't try it, but this should work, although the "efficient" part is questionable.