Major release
- net 9 support
- Removed and therefor also applicationBuilder.UseOrganizationContext().
To migrate database:
using(var scope = app.Services.CreateScope())
{
scope.ServiceProvider.GetRequiredService<OrganizationContext>().Database.Migrate();
}