Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有一个关于一般将枚举转换为字符串的问题。这个问题有点不同。
在 ASP.NET Web API 2 应用程序中是否有办法为调用定义控制器 API,它将接收/返回 JSON,其中属性是 JSON 中的字符串,但它被声明为枚举?
如果您使用的是 JSON.NET,则可以为您的 Enum 对象使用以下属性 -
[JsonConverter(typeof(StringEnumConverter))]
检查此链接。