2

所以我在这里没有看到真正回答这个问题的问题。这是一个关于 linq 的新手问题,但我想知道是否可以将以下 sql 查询(使用 C# 构建)转换为 linq 查询:

public void DoSomeQuery(bool whereCriteria1, bool whereCriteria2)
{
    string sqlQuery = "SELECT p.*";
    string fromClause = " FROM person p";
    string whereClause = " WHERE ";

    if (whereCriteria1)
    {
        fromClause += ", address a";
        whereClause += " p.addressid = a.addressid and a.state = 'PA' and a.zip = '16127' "
    }

    if (whereCriteria2)
    {
        fromClause += ", color c";
        whereClause += " p.favoritecolorid = c.colorid and c.name = 'blue'"
    }

    // arbitrarily many more criteria if blocks could be here

    sqlQuery += fromClause + whereClause;

    // do stuff to run the query
}

那有意义吗?我有一堆布尔变量,它们让我知道要添加哪个 where 子句标准。我想在 linq 中这样做,因为嗯......这很丑陋。

4

3 回答 3

2
var query = from p in persons select p;
if (whereCriteria1)
{
  query = from p in query 
  join a in address on p.addressid equals a.addressid 
  where a.state = 'PA' 
  where a.zip = '16127'
  select p;
}
if (whereCriteria2)
{
  query = from p in query
  join c in colors on p.favoritecolorid equals c.colorid 
  where c.name = 'blue'
  select p;
}
于 2009-12-04T19:10:18.603 回答
1

您正在寻找在运行时构建的动态谓词。 是一篇很好的 CodeProject 文章。

您可能也对此PredicateBuilder感兴趣。

于 2009-12-04T19:07:38.200 回答
0

当然,答案类似于我为这个问题提供的答案。基本策略是定义“基本查询”,然后有条件地将 where 子句添加到查询中。

于 2009-12-04T19:07:57.030 回答