04 2022 档案

摘要:dotnet ef migrations add init_////_mode 迁移命令 dotnet ef migrations script 迁移文件 迁移命令脚本 从给定迁移到最新迁移 阅读全文
posted @ 2022-04-13 17:08 咳咳Pro 阅读(49) 评论(0) 推荐(0)
摘要:再实体中进行这样的配置就好 /// <summary> /// 属性配置 /// </summary> [Column(TypeName = "jsonb")] public JsonElement? Properties { get; set; } 阅读全文
posted @ 2022-04-11 10:24 咳咳Pro 阅读(255) 评论(0) 推荐(0)
摘要:return await this.SearchAsync(x => x.Name.Contains(kw)).; 这个方法的返回值为Task<IEnumerable<TEntity>>当我获取返回值结果的时候无法对其进行转换为数组 这个时候现需要一个中间变量来进行接收一下,然后再次进攻toarra 阅读全文
posted @ 2022-04-08 15:27 咳咳Pro 阅读(35) 评论(0) 推荐(0)