我写这段代码:

Rep_Regions clsr = new Rep_Regions();
Func<Regions, bool> filter = r => r.RegionID == int.Parse(textBox5.Text);
Regions reg = new Regions();
reg = clsr.FindSingle(filter);


和:

 public Regions FindSingle(Func<Regions, bool> exp)
    {
        using (RepositoryDataContext = new DataClasses1DataContext())
        {
            return RepositoryDataContext.Regions.Where(exp).FirstOrDefault();
        }
    }


这是在Sql Server中执行的查询:

SELECT [t0].[RegionID], [t0].[RegionDescription]
FROM [dbo].[Region] AS [t0]


为什么查询不过滤结果并返回所有行?

最佳答案

您已使用Func<Regions, bool> filter强制在服务器上运行未经过滤的查询后使用LINQ-to-Objects。要使用查询组合,您必须使用表达式树,而不是委托。

更改为:

int regionId= int.Parse(textBox5.Text);
Expression<Func<Regions, bool>> filter = r => r.RegionID == regionId;

10-06 12:18