You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.7 KiB
48 lines
1.7 KiB
using System;
|
|
using PetaPoco;
|
|
|
|
namespace NzbDrone.Core.Datastore
|
|
{
|
|
public class CustomeMapper : DefaultMapper
|
|
{
|
|
public override Func<object, object> GetFromDbConverter(DestinationInfo destinationInfo, Type SourceType)
|
|
{
|
|
|
|
if ((SourceType == typeof(Int32) || SourceType == typeof(Int64)) && destinationInfo.Type.IsGenericType && destinationInfo.Type.GetGenericTypeDefinition() == typeof(Nullable<>))
|
|
{
|
|
// If it is NULLABLE, then get the underlying type. eg if "Nullable<int>" then this will return just "int"
|
|
Type genericArgument = destinationInfo.Type.GetGenericArguments()[0];
|
|
if (genericArgument == typeof(DayOfWeek))
|
|
{
|
|
return delegate(object s)
|
|
{
|
|
int value;
|
|
Int32.TryParse(s.ToString(), out value);
|
|
if (value == 0)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
return (Nullable<DayOfWeek>)value;
|
|
};
|
|
}
|
|
else
|
|
{
|
|
return delegate(object s)
|
|
{
|
|
int value;
|
|
Int32.TryParse(s.ToString(), out value);
|
|
if (value == 0)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
return value;
|
|
};
|
|
}
|
|
}
|
|
|
|
return base.GetFromDbConverter(destinationInfo, SourceType);
|
|
}
|
|
}
|
|
} |