1

我正在处理这些列表以从组合框中获取与所选项目匹配的项目。

private void InitializaMessageElement()
{
    if (_selectedTransactionWsName != null)
    {
  1. 从此处的下拉列表中获取与所选项目匹配的事务 Web 服务名称 output=TestWS 这是正确的

    var getTranTypeWsName = TransactionTypeVModel
         .GetAllTransactionTypes()
         .FirstOrDefault(transTypes => 
                 transTypes.WsMethodName == _selectedTransactionWsName);
    
  2. 从树节点列表中循环 wsnames 列表。在这里,它给了我所有正确的节点。

    var wsNameList = MessageElementVModel
         .GetAllTreeNodes().Select(ame => 
                 ame.Children).ToList();//. == getTranTypeWsName.WsMethodName);
    
  3. 在 wsNameList 中找到 getTranTypeWsName.WsMethodName。这是我遇到问题的地方:

          var msgElementList = wsNameList.Select(x => x.Where(ame => getTranTypeWsName != null && ame.Name == getTranTypeWsName.WsMethodName)).ToList();
    

我的 MsgElement 列表:

   _msgElementObsList = new ObservableCollection<MessageElementViewModel>(msgElementList);
    this.messageElements = _msgElementList;
    NotifyPropertyChanged("MessageElements");
}

这里抛出异常Cannot convert from 'System.Collections.Generic.IEnumerable<System.Collections.Generic.IEnumerable to System.Collections.Generic.List).


设置委托属性

    public class Red : CollisionClass
    {
        public CollisionChecker Algorithm; //this is a delegate that checks the collision
        public Red()
        {
            Algorithm = BaseAlgorithm; //PROBLEM, i dont know how to assign it correctly
        }
        public bool BaseAlgorithm(CollisionClass field)
        {
            return true;//in this method there will be an algorithm to check collision
        }
    }
    public delegate bool CollisionChecker(CollisionClass x,CollisionClass y);

在这个脚本中:有一个名为 Red 的类,它是一个名为 CollisionClass 的抽象类的派生类。碰撞类可以检查它是否与另一个派生类发生碰撞。为此,可以将算法委托存储在算法属性中,其想法是,如果我对此类进行扩展,我可以创建新算法并将它们存储在属性中,但我不知道如何分配作为属性委托的方法。

感谢您阅读我的问题

4

2 回答 2

1

您有一个 IEnumerable 列表而不是 MessageElementViewModel 列表。这就是你抛出错误的原因。

不确定您需要哪一个,但您可以像这样修复您的 Select 功能。

var msgElementList = wsNameList.Select(x => x.Where(ame => getTranTypeWsName != null && ame.Name == getTranTypeWsName.WsMethodName).First()).ToList();

或者

var msgElementList = wsNameList.SelectMany(x => x.Where(ame => getTranTypeWsName != null && ame.Name == getTranTypeWsName.WsMethodName)).ToList();
于 2013-06-17T16:53:59.823 回答
0

你能重做你msgElementList

var msgElementList = wsNameList.Where(x => x.Name == getTranTypeWsName.WsMethodName).ToList();?

getTranTypeWsName != null不认为它不属于那里,因为它不能与任何 lambda 成员进行比较。

于 2013-06-17T16:53:32.027 回答