BLToolKit:当 IQueryable<> 时不使用参数查询已执行
以下源代码:
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”参数。
为什么?我该如何修复该错误?
谢谢。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题出在自定义数据库提供程序中。我没有提到我使用 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