We have an asp.net Core website which requires having different cultures available but we are having a problem when saving dates to the database due to different calendars.
How can we enforce the Gregorian calendar even if culture was changed?
private readonly CultureInfo[] _supportedCultures = {
new CultureInfo("ar"),
new CultureInfo("en")
};
what we want to is to make "ar" or any other culture use "en" dateformat...
Thank You