BLToolKit:当 IQueryable<> 时不使用参数查询已执行

发布于 2024-10-11 07:33:25 字数 657 浏览 1 评论 0 原文

以下源代码:

                sectors1 = from sector in db.GetTable<InfrSect>();

                sectors2 = from sector in sector1
                          join team in db.GetTable<Team>() on sector.TeamId equals team.Id
                          where team.CountryId == iCountryId
                          select sector;


                IList<InfrSect> list = sectors2.ToList<>();

生成以下查询:

SELECT sector.team as TeamId
FROM infr_sect sector
INNER JOIN Team t1 ON sector.team = t1.Id
WHERE t1.Country =

生成的查询不包含“iCountryId”参数。

为什么?我该如何修复该错误?

谢谢。

The following source code:

                sectors1 = from sector in db.GetTable<InfrSect>();

                sectors2 = from sector in sector1
                          join team in db.GetTable<Team>() on sector.TeamId equals team.Id
                          where team.CountryId == iCountryId
                          select sector;


                IList<InfrSect> list = sectors2.ToList<>();

Generate the following query:

SELECT sector.team as TeamId
FROM infr_sect sector
INNER JOIN Team t1 ON sector.team = t1.Id
WHERE t1.Country =

The generated query doesn't contain 'iCountryId' parameter.

Why? How can I fix the error?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

执手闯天涯 2024-10-18 07:33:25

问题出在自定义数据库提供程序中。我没有提到我使用 MySql DB。我已将 MySqlDataProvider 的源代码替换为 BLToolkit 源代码中同一类的源代码,一切都变得可行。

以下是“BLToolKit 支持论坛”上解决方案的链接:http://rsdn.ru /forum/prj.rfd/4109840.aspx

The problem was in custom DB provider. I didn't mention in question that I use MySql DB. I've replaced the source code of my MySqlDataProvider with a source code of same class from the BLToolkit source code and everything became workable.

Here is a link to solution on the 'BLToolKit support forum': http://rsdn.ru/forum/prj.rfd/4109840.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文