SubSonic 3 和 Linq 参数化查询
我们目前正在使用 SubSonic 3.0.0.2 并使用 Linq,我们注意到底层 SQL 没有参数化。
我知道查询工具是,我们可以使用它,但我只是好奇是否可以使用 Linq 进行参数化?
我错过了什么吗? 或者这还没有在 SubSonic 中实现。
干杯 托尼
We are currently using SubSonic 3.0.0.2 and playing about with the Linq for it, we've noticed that the underlying SQL is not parameterized.
I'm aware that the query tool is and we can work with that but I'm just curious if having parameterized with Linq is possible?
Am I missing something? or is this not yet implemented in SubSonic.
Cheers
Tony
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它是参数化的 - 只是不适用于常量值(您嵌入代码中的东西)。 如果你使用一个变量那么它就会。
It is parameterized - just not for constant values (stuff you embed in code). If you use a variable then it will be.