如何在 Visual Studio 2010 中刷新“查看数据类”组合框? (MVC 2.0)

发布于 2024-10-10 11:57:34 字数 673 浏览 0 评论 0原文

我在项目中添加了一个新模型,但无法在“添加视图”窗口的“查看数据类”组合框中选择它。我只看到 DB4O 类,它们是从 dll 文件导入的。

如何强制该菜单自行刷新?

谢谢你!

伊万

型号代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace YvanSoftware_V5.Models
{
    public class Writer
    {
        public Writer()
        {
            registerDate = DateTime.Now;
        }
        public string username { get; set; }
        public string password { get; set; }
        public string email { get; set; }
        public DateTime registerDate { get; set; }
        //the birthday is nullable:
        public DateTime? birthday { get; set; }
    }

}

I added a new model in the project, but I cannot select it in the View Data Class combobox in the Add View window. I only see the DB4O classes, which are imported from a dll file.

How do I force that menu to refresh itself?

Thank you!

Yvan

Model code:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace YvanSoftware_V5.Models
{
    public class Writer
    {
        public Writer()
        {
            registerDate = DateTime.Now;
        }
        public string username { get; set; }
        public string password { get; set; }
        public string email { get; set; }
        public DateTime registerDate { get; set; }
        //the birthday is nullable:
        public DateTime? birthday { get; set; }
    }

}

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

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

发布评论

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

评论(1

小矜持 2024-10-17 11:57:34

您是说在“添加视图”对话框中?

重新编译整个应用程序应该可以解决问题。

You mean in the Add View dialog?

Recompiling the entire application should solve the problem.

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