Building Ocelot API Gateway Microservices with ASP.Net Core - Microservice Implementation part 3

Sdílet
Vložit
  • čas přidán 7. 09. 2024
  • Learn how to create an API Gateway using Ocelot in 5 mins.

Komentáře • 6

  • @jibrinmasud
    @jibrinmasud Před 15 dny

    Why not do it while explaining instead of explaining to us after doing it???

  • @sunilpratapsingh2685
    @sunilpratapsingh2685 Před rokem +1

    Very crisp video, thanks for sharing your knowledge.

  • @rishindrasharma7278
    @rishindrasharma7278 Před 2 lety +1

    I created a project (asp.net core empty project in .NET 6.0 , which do not contain startup.cs), how should I proceed now? Without startup.cs ?

    • @fiveminutetech
      @fiveminutetech  Před 2 lety +1

      Thank you for a very relevant question. Answer is you can still use the configure methods like below:
      var builder = WebApplication.CreateBuilder(args);
      ConfigureConfiguration(builder.configuration);
      ConfigureServices(builder.Services);
      var app = builder.Build();
      void ConfigureConfiguration(ConfigurationManager configuration) => { // the code here }
      void ConfigureServices(IServiceCollection services) => { // the code here }

    • @rishindrasharma7278
      @rishindrasharma7278 Před 2 lety +1

      @@fiveminutetech Thanks for the help !!

  • @harshchaurasia1553
    @harshchaurasia1553 Před 2 lety

    🙏👍