I have a process that updates documents in Solr with SolrNet, which are originanlly filled with data import from a Data Base.
I am having trouble with the DateTime formats because the documents indexed from the Data Base have datetimes like this
<str name="Date">2012-08-07 16:00:27.32</str>
and the documents indexed with solrnet have datetimes like this
<str name="Date">2012-08-14T15:57:30Z</str>
I need them to be like the first one, because when I read the document in c#, the date 2012-08-14T15:57:30Z is interpreted like 2012-08-14 12:57:30 and I don't know why.
Tanks!!!!!