日常生活的交流与学习

首页 新随笔 联系 管理

2024年4月25日 #

摘要: JSON序列化属性名由大写变成小写的问题 在 ASP.NET 中,默认情况下,JSON 序列化会将属性名转换为小写(camel case)以匹配 JSON 的约定。 如果您希望保留 C# 的命名约定(即属性名的大小写不变),您需要更改默认的 JSON 序列化器。 System.Text.Json 使 阅读全文
posted @ 2024-04-25 16:23 lazycookie 阅读(425) 评论(0) 推荐(0) 编辑

摘要: 数据库的设计 实体之间的关系图 实体 EleOrderRowItem.cs public class EleOrderRowItem : EleEntity { public string? Xxx { get; set; } // 外键:一个rowItem属于一个row public long R 阅读全文
posted @ 2024-04-25 12:06 lazycookie 阅读(12) 评论(0) 推荐(0) 编辑

摘要: 在 EF Core 中,如果查询查询外键表的内容 实体 public class Blog { public int BlogId { get; set; } public string Url { get; set; } public List<Post> Posts { get; set; } 阅读全文
posted @ 2024-04-25 11:47 lazycookie 阅读(254) 评论(0) 推荐(0) 编辑