Co-Hosting Orleans and ASP.NET Core
With the release of Orleans 3.0 comes the ability to co-host with ASP.NET Core (or any other framework that uses the generic host builder). What this means is you can run Orleans and ASP.NET Core in the same process. The advantage to this is both services will share the same service provider, logging, etc that is configured with the host builder. Orleans and ASP.NET Core The extension method UseOrleans() is available now on the IHostBuilder. Just like you would configure the ASP.NET Core via ConfigureWebHostDefaults, you can configure the Orleans silo. Benefits One of the nice benefits here is that… Read More »Co-Hosting Orleans and ASP.NET Core