标签: asp.net-core azure-cosmosdb ef-core-2.1
我使用的是EFCore(与Cosmos),由于某种原因,尽管属性名称为id,但Id却为我添加了第二个密钥,{ 1}}。
id
Id
我能阻止这个吗?
KeyAttribute
答案 0 :(得分:0)
您可以在ID属性上方添加[Newtonsoft.Json.JsonProperty(PropertyName="id")]
[Newtonsoft.Json.JsonProperty(PropertyName="id")]
Link