Skip to content

Instantly share code, notes, and snippets.

@explorer14
Created June 11, 2018 22:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save explorer14/b48c2147301575ea089bd23000eba89e to your computer and use it in GitHub Desktop.
Save explorer14/b48c2147301575ea089bd23000eba89e to your computer and use it in GitHub Desktop.
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
// ..other middleware
app.UseTenantDBMapper();
app.UseMvc(routes =>
{
routes.MapRoute(
name: "default",
template: "{tenant}/{controller=Home}/{action=Index}/{id?}");
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment