在BLToolkit中动态配置SqlQueryAttribute?
BLToolkit 是否提供类似于 NHibernate 的 HQL 的工具?也就是说,允许使用动态SQL?我在 BLToolkit 文档 (http://bltoolkit.net/Doc.DACustomSqlQuery1.ashx?HL=sqlqueryattribute) 中找到了这个链接,它展示了如何通过 SqlQueryAttribute 的派生类提供许多不同的查询,但 SQL 仍然很难编码。我意识到 BLToolkit 等工具并不是为动态查询而设计的,但我们正在尝试在单个数据访问层上进行标准化。 TIA。
Does BLToolkit provide a facility similar to NHibernate's HQL; that is, allowing one to use dynamic SQL? I found this link in the BLToolkit documentation (http://bltoolkit.net/Doc.DACustomSqlQuery1.ashx?HL=sqlqueryattribute) that shows how to provide a number of different queries via a derived class of SqlQueryAttribute, but the SQL still is hard coded. I realize that tools such as BLToolkit were not designed for dynamic queries, but we're trying to standardize on a single data-access layer. TIA.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,答案比我想象的更明显:BL Toolkit 公开了 ExecuteXXX 方法(Reader、DataSet、List),这不能使它变得更简单。
Well, the answer was more evident than I thought: BL Toolkit exposes ExecuteXXX methods (Reader, DataSet, List) that couldn't make it more simple.