在我的 ASP NET MVC 实体框架项目中,我从数据库中传递日期和时间信息。当我以阿拉伯语格式显示日期时,CultureInfo("ar-AR")
我从数据库中输入的日期中得到了错误的日期。
到目前为止我的代码:
datetime_created.ToLongDateString();
// The date I pass is:- 2020-12-10
// CultureInfo("en-US") in en-US culture it displays the date as it is in a database:- Thursday, December 10, 2020
// CultureInfo("ar-AR") in ar-AE culture it displays another date:- 1442/ربيع الثاني/25
任何想法为什么会发生这种情况?