6

我想在 Linq 语句中动态生成跨越多个表的谓词。在以下代码片段中,我想使用 PredicateBuilder 或类似的构造来替换以下代码中的“where”语句:

代替:

public class Foo
{
    public int FooId;  // PK
    public string Name;
}

public class Bar
{
    public int BarId;  // PK
    public string Description;
    public int FooId;  // FK to Foo.PK
}

void Test()
{
    IQueryable<Foo> fooQuery = null;    // Stubbed out
    IQueryable<Bar> barQuery = null;    // Stubbed out

    IQueryable<Foo> query =
        from foo in fooQuery
        join bar in barQuery on foo.FooId equals bar.FooId
        where ((bar.Description == "barstring") || (foo.Name == "fooname"))
        select foo;
}

有类似的东西:

void Test(bool searchName, bool searchDescription)
{
    IQueryable<Foo> fooQuery = null;    // Stubbed out
    IQueryable<Bar> barQuery = null;    // Stubbed out

    IQueryable<Foo> query =
        from foo in fooQuery
        join bar in barQuery on foo.FooId equals bar.FooId
        select foo;

    // OR THIS

    var query =
        from foo in fooQuery
        join bar in barQuery on foo.FooId equals bar.FooId
        select new {foo, bar};

    var predicate = PredicateBuilder.False<Foo>();
    if (searchName)
    {
        predicate = predicate.Or(foo => foo.Name == "fooname");
    }
    if (searchDescription)
    {
        // Cannot compile
        predicate = predicate.Or(bar => bar.Description == "barstring");
    }
    // Cannot compile
    query = query.Where(predicate);
}

有什么想法、想法、策略来解决这个问题?

谢谢,

欧拉算子

4

1 回答 1

6

我认为您的问题在于 PredicateBuilder 的类型 T - 如果作用于 Foo,则谓词的一半,另一半在 Bar 上。

您可以用一个简单的手动构造查询替换它:

void Test()
{
    IQueryable<Foo> fooQuery = null;    // Stubbed out
    IQueryable<Bar> barQuery = null;    // Stubbed out

    IQueryable<Foo> query =
        from foo in fooQuery
        join bar in barQuery on foo.FooId equals bar.FooId
        select new {Foo = foo, Bar = bar};

    if (searchName) 
    {
        query = query.Where(fb => fb.Foo.Name == "fooname");
    }
    if (searchDescription)
    {
        query = query.Where(fb => fb.Bar.Description == "barstring");
    }

    // use query here
}

另一种方法是使用 PredicateBuilder 但使其适用于 Foo,Bar 对 - 例如

class FooBar
{
   public Foo Foo {get;set;}
   public Bar Bar {get;set;}
}

void Test(bool searchName, bool searchDescription)
{
    IQueryable<Foo> fooQuery = null;    // Stubbed out
    IQueryable<Bar> barQuery = null;    // Stubbed out

    var query =
        from foo in fooQuery
        join bar in barQuery on foo.FooId equals bar.FooId
        select new FooBar
        {
           Foo = foo, 
           Bar = bar
        };

    var predicate = PredicateBuilder.False<FooBar>();
    if (searchName)
    {
        predicate = predicate.Or(foobar => foobar.Foo.Name == "fooname");
    }
    if (searchDescription)
    {
        predicate = predicate.Or(foobar => foobar.Bar.Description == "barstring");
    }
    query = query.Where(predicate);

    // use query here
}
于 2011-03-14T20:02:48.243 回答