摘要:
官网:https://ocelot.readthedocs.io/en/latest/ 使用步骤 1、安装Nuget:Ocelot 2、注册服务 services.AddOcelot(); 3、注册中间件 app.UseOcelot().Wait(); 4、添加配置文件ocelot.json //* 阅读全文
摘要:
Fluent API 视图与实体类映射 modelBuilder.Entity<Blog>().ToView("blogsView"); 排除属性映射 modelBuilder.Entity<Blog>().Ignore(b => b.Name2); 配置列名 modelBuilder.Entity 阅读全文