We want to set the Thread.CurrentCulture
- before the ASP.NET MVC model binder / validator runs (of course), but
- after the user has been authorized (as we want to load the culture from a UserSettings table)
What's the correct extension point we should go for?
An action filter is too late, Global.asax is too early (user not authorized yet). Anyone with a good idea?