从 EF 存储中排除属性

发布于 2024-12-04 06:04:10 字数 409 浏览 0 评论 0原文

上一篇文章中,有人提出了一种有趣的方法来解决我遇到的问题正在努力解决。该解决方案包括向我的一个类添加一个属性,该类是由实体框架生成的。

有什么办法可以排除这个新属性被 EF 存储吗?所以我有这样的东西:

public partial class User
{
    UserState state; // property I do not want stored in the database

其中 User 有一堆由 EF 在其他地方定义的属性?

谢谢-e

In a previous post, someone suggested an interesting approach to a problem I'm trying to solve. the solution included adding a property to one of my classes, a class that is generated by the Entity Framework.

Is there any way to exclude this new property from being stored by EF? so I have something like:

public partial class User
{
    UserState state; // property I do not want stored in the database

where User has a bunch of properties defined elsewhere by EF?

thanks - e

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

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

发布评论

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

评论(1

寄意 2024-12-11 06:04:10

根据上面的@Gabriel,我不用担心,属性不会自动存储。

as per @Gabriel above, I need not worry, properties are not automatically stored.

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