0

我有 DTO Suach 的列表:

 Public Class UKey
{
    public Int64 Key{ get; set; }

}

Public Class Test : UKey
{
    public Int64? CityId  { get; set; }
    public Test2  test2{ get; set; }
}
Public Class Test2 : UKey
{
    public Int64? CountryId { get; set; }
    public Test3 test3 {get;set;}
}
public Class Test3 :UKey
{

}

我有嵌套的 DTO,例如类 test 有一个类 test 2 的成员,类 test2 有一个类型类 test 3 的成员,每个类都有它自己的唯一键,这个键不能在其中任何一个中重复,类似于 GUId . 我想查询 Class Test 以找到具有给定唯一键的嵌套 Dto 之一。

4

1 回答 1

0

假设tests对象是IEnumerable,它是一组Test对象;

tests.SingleOrDefault(q => q.test2.Key == id || q.test2.test3.Key == id);

更新:您需要应用递归搜索。我稍微改变了基类;

public class UKey
{
public Int64 Key { get; set; }
public UKey ReferencedEntity { get; set; }
}

和搜索功能:

private UKey Search(UKey entity, Int64 id)
{
    UKey result = null;
    if (entity.Key == id)
        result = entity;
    else
    {
        result = this.Search(entity.ReferencedEntity,id);
    }
    return result;
}
于 2013-03-07T10:55:01.460 回答