有没有办法控制JSON对象中的属性顺序?

时间:2016-06-22 13:28:53

标签: c# .net partial-classes

我正在使用Entity Framework Core,生成的类有自己的属性,即

DataModel.Agent.cs

public partial class Agent {

    public virtual decimal Id
    {
        get;
        set;
    }

    public virtual string Name
    {
        get;
        set;
    }
}

但是我需要其他属性,所以我在另一个文件中声明它们:

Agent.cs

public partial class Agent
{
    [NotMapped]
    public dynamic Custom { get; set; }
}

问题是Agent.cs是在DataModel.Agent.cs之前编译的,因此编译器按以下顺序生成属性:Custom,Id,Name和生成的JSON很奇怪。

我希望它是:Id,Name,Custom。换句话说,我总是希望DataModel类首先出现。

编辑:只是为了澄清,唯一的目标是通过始终将Id放在第一位来使JSON更漂亮,这是一种非常常见的模式。这对应用程序的工作方式完全没有影响。

有没有办法强制编译器始终先编译其中一个文件?

1 个答案:

答案 0 :(得分:4)

如果使用json.net

,你真的不应该依赖JSON属性命令
public class Account
 {
 public string EmailAddress { get; set; }

 // appear last
 [JsonProperty(Order = 1)]
 public bool Deleted { get; set; }

 [JsonProperty(Order = 2)]
  public DateTime DeletedDate { get; set; }

  public DateTime CreatedDate { get; set; }
  public DateTime UpdatedDate { get; set; }

  // appear first
  [JsonProperty(Order = -2)]
  public string FullName { get; set; }
}

http://www.newtonsoft.com/json/help/html/JsonPropertyOrder.htm