Skip to content

Instantly share code, notes, and snippets.

@mcintyre321
Created June 27, 2013 13:53
Show Gist options
  • Save mcintyre321/5876578 to your computer and use it in GitHub Desktop.
Save mcintyre321/5876578 to your computer and use it in GitHub Desktop.
Fix for Lucene DateTime issue
using System;
using System.ComponentModel;
using System.Globalization;
using Lucene.Net.Documents;
namespace Lucene.Net.Linq.Converters
{
public class DateTimeConverter : TypeConverter
{
public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType)
{
return sourceType == typeof(string);
}
public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType)
{
return destinationType == typeof(string);
}
public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value,
Type destinationType)
{
return DateTools.DateToString(((DateTime)value), DateTools.Resolution.MILLISECOND);
}
public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
{
var luceneTimeString = (string) value;
return DateTools.StringToDate(luceneTimeString);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment