I use ADO disconnected mode to get data from database by filling dataset ds. All data come true except the date field
string strDate = ds.Tables[0].Rows[0]["H_DT"].ToString();
it throws an exception says:
Specified time is not supported in this calendar. It should be between 04/30/1900 00:00:00 (Gregorian date) and 11/16/2077 23:59:59 (Gregorian date), inclusive.
I tried to write this code
System.Threading.Thread.CurrentThread.CurrentCulture = new CultureInfo("ar-sa");
System.Threading.Thread.CurrentThread.CurrentUICulture = new CultureInfo("ar-sa");
to change the culture to Arabic but without any luck.
Update
The following is screenshot of quick watch for the variable
Use the
InvariantCulture
when converting dates to strings under limited cultures, just like this:Try this:
You will pass you desired culture when you are converting date to string.
--->cause of this issue
the date of hijri in DateTime Object in c# is between 01/01/1318 and 30/12/1500.
in gregorian date is between years 1900 and 2077
so if we open the sql database and get the date and convert to hijri date we note that is not between the 2 hijri date above
to make sure you can convert it by opening any converter site online
---->solutions
you have 2 solution to resolve this issue
-solusion 1
you can update the values of date in sql
set it to real date (between 1900 and 2077)
OR
-solution 2
in your code before you get the date from datatable row you should to set the CurrentCulture to "en" and when you finish the code you should set the language to "ar".
check the code below
From
DateTime.ToString
methodYour
ar-sa
culture's default calender isUmAlQuraCalendar
calender.And from
UmAlQuraCalendar.MinSupportedDateTime
PropertySince your
DateTime
is1, 1, 1398
, it is too normal to throwsArgumentOutOfRangeException
.You can solve your problem to provide parameter an
IFormatProvider
in yourDateTime.ToString()
method which hasGregorianCalendar
by default. You can useInvariantCulture
for example.A
DateTime
belongs on Gregorian calendar by default. FromDateTime
structure;That means your
ds.Tables[0].Rows[0]["H_DT"]
datetime is Gregorian calender by default. But since you using.ToString()
method without any parameter, your method uses yourCurrentCulture
which isar-sa
since you wrote it in your web.config. And that culture hasUmAlQuraCalendar
calender by default. Since your datetime out of range in this calender, your code throws exception.Remember, you have a
DateTime
with1318
as a year in Gregorian calender, not1318
as a year inUmAlQuraCalendar
calender.As an example;
throws
ArgumentOutOfRangeException
exception because it is exactly the same case of yours. This is a DateTime which is a1318
year in a Gregorian calender, but there is no representation onUmAlQuraCalendar
calender of this datetime because inUmAlQuraCalendar
calender, years start with1900
in Gregorian calender.Take a look at how
UmAlQuraCalendar
calender implemented;