gpt4 book ai didi

entity-framework - 扩展 Entity Framework 模型

转载 作者:行者123 更新时间:2023-12-04 08:33:37 27 4
gpt4 key购买 nike

我想用一个临时属性扩展一个 Entity Framework 模型。我只需要 mvc 形式的它。我不需要将它保存在数据库中。

我该怎么做?

最佳答案

为你想扩展的实体创建一个分部类

例如

//must be in the same namespace as the Customer entity in the model
public partial class Customer
{
public string MyProperty{get;set;}
}

此属性将取消映射,您可以在运行查询或实现后用数据填充它。

为您的实体创建一个包装类,它公开未映射的属性和映射的属性以及您在 View 中需要的属性。

关于entity-framework - 扩展 Entity Framework 模型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2801833/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com