Welcome to the navigation

Reprehenderit minim tempor eiusmod irure consectetur in dolore commodo deserunt non ipsum consequat, culpa nulla incididunt sit fugiat esse do duis est ad proident, cillum. In enim eiusmod excepteur aliquip velit amet, elit, minim commodo reprehenderit exercitation sit sed sint in lorem incididunt occaecat non cupidatat in deserunt culpa aliqua

Yeah, this will be replaced... But please enjoy the search!

Cannot change Language when UseCurrentUICulture is on

This error occurs since you forgot to set the UseCurrentUICulture to false when instantiating the MetaDataContext object The error message looks something like this MetaDataPlusException was unhandled Cannot change Language when UseCurrentUICulture is on To solve this you simple need to set the UseCurrentUICulture to false when instantiating your MetaDataContext object, in example

MetaDataContext metaDataContext = new MetaDataContext(connectionString)
{
    UseCurrentUICulture = false,
    Language = MyProject.EPiServer.Constants.ProductCatalogConstants.DefaultLanguage
};
Cheers!