別の ObservableCollection を含む ObservableCollection があります。
ObservableCollection<MyModel> models = new ObservableCollection<MyModel>();
私のモデルは次のようになります。
public class MyModel
{
public ObservableCollection<MyModel2> list2 { get; set; }
public string Property1 { get; set; }
}
public class MyModel2
{
public string Property2 { get; set; }
public string Property3 { get; set; }
}
"Property2" == "test1" および "Property3" == "test2" であるモデル内のすべての MyModel2 アイテムを検索したい
正しい項目を見つけるために 1 つの list2 だけを検索する方法は知っていますが、models-collection 内のすべての "list2" を検索したいと考えています。
var result = from mod
in list2
where mod.Property2 == "test1" && mod.Property3 == "test2"
select mod;
どんな助けでも感謝します。