城堡activerecord重写sql
无论如何,在将 SQL 查询发送到数据库之前拦截它并使用 castle active record 重写它?
is there anyway to intercept the sql query before it is sent to the database and rewrite it using castle active record ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
设置拦截器并使用
OnPrepareStatement
修改生成的 SQL。请参阅此示例。Set up an interceptor and use
OnPrepareStatement
to modify the generated SQL. See this example.