subsonic 与 ASP.net MVC2 强类型视图

发布于 2024-09-11 14:29:01 字数 156 浏览 4 评论 0原文

我有一个 MVC 项目设置,并且已将亚音速 Active Record 模板引入到我的项目中,并且它们已成功生成,并且我可以使用亚音速类来访问我的数据库。但是,如何使用亚音速生成的类创建强类型视图?当我选择“添加视图”并选中复选框以创建强类型视图时,为我的数据从亚音速生成的类均不可用。我该怎么做?

I have an MVC project setup, and I've brought the subsonic Active Record templates into my project, and they generated successfully and I can use the subsonic classes to access my database. However, how do I create a strongly typed view using the subsonic generated classes? When I select "add View" and I check the checkbox to create a strongly-typed view, none of the generated classes from subsonic for my data are available. How do I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

她说她爱他 2024-09-18 14:29:01

您可能需要首先编译您的项目。

You probably need to compile your project first.

忆梦 2024-09-18 14:29:01

我会手动尝试一下,看看是否有任何错误。打开视图并将:更改

Inherits="System.Web.Mvc.ViewPage"

Inherits="System.Web.Mvc.ViewPage<Your.Strongly.Typed.ClassName>"

您还可以在pages->namespaces下的web.config中添加命名空间:

<add namespace="Your.Strongly.Typed" />

:如果您想将更改缩短为,

Inherits="System.Web.Mvc.ViewPage<ClassName>"

I would try it manually and see if you get any errors. Crack open your view and change:

Inherits="System.Web.Mvc.ViewPage"

to

Inherits="System.Web.Mvc.ViewPage<Your.Strongly.Typed.ClassName>"

You can also add the namespace in the web.config under pages->namespaces

<add namespace="Your.Strongly.Typed" />

if you want to shorten the change to:

Inherits="System.Web.Mvc.ViewPage<ClassName>"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文