实体框架不会生成 JsonIgnoreAttribute



我正在尝试从MVC 4 web api ApiController对象返回从实体框架4 edmx生成的对象,accept:json/application。

问题是 json 格式化程序还返回导航属性,我不想返回这些属性(我只想返回原始属性)。

因此,我在导航属性中查看了生成的实体框架 4 代码,只有 XmlIgnoreAttribute 和 SoapIgnoreAttribute,而我需要 JsonIgnoreAttribute。

我无法更改生成的代码,因为它将在下次更改 edmx 时被覆盖,那么我该如何配置模型生成将使用 JsonIgnoreAttribute 生成呢?

谢谢

虽然我不知道这是一个错误还是不受支持的功能,但我建议您定义视图模型并让您的 API 控制器操作返回视图模型而不是 EF 自动生成的域模型。视图模型显然将仅包含要公开的属性。单个视图模型可以表示多个域模型的聚合。所以不要依赖任何 XmlIgnore、SoapIgnore、JsonIgnore、...属性。依靠您的视图模型。

好的,我找到了该怎么做。我们需要以这种方式使用自定义 DefaultContractResolver:

public class ExcludeEntityKeyContractResolver : DefaultContractResolver
{
    private static Type mCollectionType = typeof(System.Data.Objects.DataClasses.RelatedEnd);
    protected override IList<JsonProperty> CreateProperties(Type type, MemberSerialization memberSerialization)
    {
        var members = GetSerializableMembers(type);
        IList<JsonProperty> properties = base.CreateProperties(type, memberSerialization);
        IList<JsonProperty> serializeProperties = new List<JsonProperty>();
        for (int i = 0; i < properties.Count; i++)
        {
            var memberInfo = members.Find(p => p.Name == properties[i].PropertyName);
            if (!memberInfo.GetCustomAttributes(false).Any(a => a is SoapIgnoreAttribute) && properties[i].PropertyType != typeof(System.Data.EntityKey))
            {
                serializeProperties.Add(properties[i]);
            }
        }
        return serializeProperties;
    }
}

在 Global.asax 中:

        JsonSerializerSettings serializerSettings = new JsonSerializerSettings();
        serializerSettings.ContractResolver = new ExcludeEntityKeyContractResolver();
        var jsonMediaTypeFormatter = new JsonMediaTypeFormatter();
        jsonMediaTypeFormatter.SerializerSettings = serializerSettings;
        GlobalConfiguration.Configuration.Formatters.Insert(0, jsonMediaTypeFormatter);

并且不必担心性能,因为在整个应用程序持续时间内,每种类型只会调用一次 CreateProperties :)

相关内容

  • 没有找到相关文章

最新更新