If your database field is of type text, then you first need to parse the text value into a (genuine) datetime value. The recommended function for this is DateTime.ParseExact. Example:
string myString = ...; // the value you read from the database
DateTime myDateTime = DateTime.ParseExact(myString, "dd/MM/yyyy HH:mm:ss",
CultureInfo.InvariantCulture);
About the "with any region or date type" you mentioned in the question: That's what the second and third parameter of ParseExact is about: There, you can specify the format that the text values in the database have. (See the documentation of DateTime.ParseExact for more details.) Note that you do need to specify the format: Otherwise, the function wouldn't be able to tell whether 03/04/2010 is the fourth of March or the third of April.
Afterwards, you can use regular date comparison operations (e.g. if (datetime1 <= datetime2) { ... }) to check if the date is within the desired time frame.