摘要:
JSON序列化属性名由大写变成小写的问题 在 ASP.NET 中,默认情况下,JSON 序列化会将属性名转换为小写(camel case)以匹配 JSON 的约定。 如果您希望保留 C# 的命名约定(即属性名的大小写不变),您需要更改默认的 JSON 序列化器。 System.Text.Json 使 阅读全文
2024年4月25日 #
摘要:
数据库的设计 实体之间的关系图 实体 EleOrderRowItem.cs public class EleOrderRowItem : EleEntity { public string? Xxx { get; set; } // 外键:一个rowItem属于一个row public long R 阅读全文
摘要:
在 EF Core 中,如果查询查询外键表的内容 实体 public class Blog { public int BlogId { get; set; } public string Url { get; set; } public List<Post> Posts { get; set; } 阅读全文