动态数据项目中表支架的元数据

发布于 2024-11-09 10:25:47 字数 444 浏览 8 评论 0原文

我创建了一个包含动态数据的 ASP.NET Web 应用程序。我对此还很陌生,所以我在很多事情上挣扎,但现在我完全陷入困境。

问题是,我想隐藏数据库中表的名称列(基于实体框架的模型)。因此,我添加了一个名为“AppCode”的新文件夹(因为我无法在 Web 应用程序中添加默认的 app_code 文件夹),并添加了一个名为“User.cs”的文件。该文件的内容如下所示:

[MetadataType(typeof(UserMetaData))]
public partial class User{
}

public class UserMetaData
{
    [ScaffoldColumn(false)]
    public object Name;
}

现在,运行应用程序后,我没想到在增删改查页面中看到了姓名栏,但它仍然在那里。我在这里缺少什么?

多谢。

I created an ASP.NET webapplication with dynamic data. I'm fairly new to this so I'm struggling with alot of things but now I'm completely stuck.

Thing is, I want to hide, lets say, the name column of a table in my database (model based on entity framework). Therefor I added a new folder named "AppCode" (because I cannot add the default app_code folder in a web app) and added a file named "User.cs" The contents of this file look like this:

[MetadataType(typeof(UserMetaData))]
public partial class User{
}

public class UserMetaData
{
    [ScaffoldColumn(false)]
    public object Name;
}

Now, after running the application I did not expect to see the name column in the crud pages, but it is still there. What am I missing here?

Thanks alot.

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

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

发布评论

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

评论(1

迷迭香的记忆 2024-11-16 10:25:47

终于我自己弄清楚了。问题在于我的模型被放置在引用的类库中,而不是动态数据项目本身中。分部类的命名空间与模型的命名空间相同似乎非常重要。否则就行不通。因此,就我而言,我必须将部分类放置在包含模型的“域”项目中。希望这对某人有帮助。

Finally figured it out myself. What went wrong was the fact that my model was placed in a referenced class library and not in the dynamic data project itself. It seems to be very important that the namespace of the partial class is the same as that of the model. Otherwise it would not work. So, in my case I had to place the partial class in my "domain" project which contains the model. Hope this helps someone.

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