Skip to content

Instantly share code, notes, and snippets.

@DmitrySikorsky
Created July 13, 2019 09:37
Show Gist options
  • Save DmitrySikorsky/11bae193bada6fa5e3aa852bb2cd0844 to your computer and use it in GitHub Desktop.
Save DmitrySikorsky/11bae193bada6fa5e3aa852bb2cd0844 to your computer and use it in GitHub Desktop.
protected void CreateOrUpdateLocalizationsFor(object entity)
{
foreach (PropertyInfo propertyInfo in this.GetLocalizationSetPropertiesFromEntity(entity))
{
LocalizationSet localizationSet = this.GetOrCreateLocalizationSetForProperty(entity, propertyInfo);
this.DeleteLocalizations(localizationSet);
this.CreateLocalizations(propertyInfo, localizationSet);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment