SubSonic 3.0 中的 SQL 视图
有什么方法可以访问 SubSonic 3.0 中的 SQL 视图吗? 代码生成似乎完全跳过视图
Is there any way that I can access my SQL views in SubSonic 3.0? The code generation seems to skip views altogether
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要在项目中包含视图,
只需打开 SQLServer.ttinclude
查找加载表的查询(搜索形式“const string TABLE_SQL”)
然后将其更改为
如果您在 asp.net 项目中使用它,则可以排除 aspnet 表和视图,如下所示
To include views in your project
simply open SQLServer.ttinclude
Find the query that load the tables ( search form 'const string TABLE_SQL')
then change it to
if you are using it in an asp.net project you can exclude the aspnet table and views like so
SubSonic 3 模板尚不生成视图代码。 不过,您可以很容易地自己添加功能,请查看 SQLServer.ttinclude 中的 LoadTables 和 GetSPs 方法,了解 SubSonic 如何构建表\存储过程列表。
The SubSonic 3 templates don't generate code for views yet. You could add the functionality yourself quite easily though, have a look at the LoadTables and GetSPs methods in SQLServer.ttinclude to see how SubSonic builds lists of tables\stored procedures.