2

我实现了一个自定义的 IContractResolver,以便我可以从我的 Web API 中动态过滤出对象的某些属性。例如,GetEmployees 操作将过滤掉返回的每个员工的“Id”属性。

public IEnumerable<Employee> GetEmployees()
{
    var ignoreList = new List<string> {"Id"};
    GlobalConfiguration.Configuration.Formatters.JsonFormatter.SerializerSettings.ContractResolver = new JsonContractResolver(ignoreList);
    return db.Employees.AsEnumerable();
}

问题是,在相同的方法中,我想将合同解析器设置回其默认值。像这样的东西:

public IEnumerable<Employee> GetEmployees()
{
    var defaultContractResolver = GlobalConfiguration.Configuration.Formatters.JsonFormatter.SerializerSettings.ContractResolver;
    var ignoreList = new List<string> {"Id"};
    GlobalConfiguration.Configuration.Formatters.JsonFormatter.SerializerSettings.ContractResolver = new JsonContractResolver(ignoreList);
    // Serialize object
    GlobalConfiguration.Configuration.Formatters.JsonFormatter.SerializerSettings.ContractResolver = defaultContractResolver;
    // return serialized object
}

实现这一目标的最佳方法是什么?

4

1 回答 1

2

这绝对不是你尝试的方式。您将以这种方式处理线程问题。

一种方法可能是将返回的对象更改为不包含Id-property。而是制作一个更专业的对象。这就是我要走的路。

或者,您可以HttpResponseMessage直接返回 a 并将内容设置为您喜欢的任何内容。但是你必须自己处理序列化和内容否定。

于 2013-04-09T13:08:17.160 回答