我使用MetadataType将JsonIgnore等属性应用于像这样的实体框架对象
[MetadataType(typeof(FooMetadata))]
public partial class Foo
{
private class FooMetadata
{
[JsonIgnore]
public virtual Bar Bar { get; set; }
}
}
它在json.net 6.0.6之前工作正常,现在我需要将ProxyCreationEnabled设置为false以使其再次工作。希望能解决这个问题。