1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-22 09:21:43 +02:00
Radarr/NzbDrone.Core/Datastore/CustomeMapper.cs

36 lines
1.4 KiB
C#
Raw Normal View History

2011-06-15 04:31:41 +02:00
using System;
using PetaPoco;
namespace NzbDrone.Core.Datastore
{
public class CustomeMapper : DefaultMapper
{
2011-06-18 10:29:38 +02:00
public override Func<object, object> GetFromDbConverter(DestinationInfo destinationInfo, Type sourceType)
2011-06-15 04:31:41 +02:00
{
2011-06-18 10:29:38 +02:00
if ((sourceType == typeof(Int32) || sourceType == typeof(Int64)) && destinationInfo.Type.IsGenericType && destinationInfo.Type.GetGenericTypeDefinition() == typeof(Nullable<>))
2011-06-15 04:31:41 +02:00
{
// If it is NULLABLE, then get the underlying type. eg if "Nullable<int>" then this will return just "int"
2011-06-16 08:33:01 +02:00
Type genericArgument = destinationInfo.Type.GetGenericArguments()[0];
if (genericArgument == typeof(DayOfWeek))
2011-06-15 04:31:41 +02:00
{
return delegate(object s)
{
int value;
Int32.TryParse(s.ToString(), out value);
2011-06-18 10:29:38 +02:00
return (DayOfWeek?)value;
2011-06-15 04:31:41 +02:00
};
}
2011-06-16 08:33:01 +02:00
2011-06-18 10:29:38 +02:00
return delegate(object s)
{
int value;
Int32.TryParse(s.ToString(), out value);
return value;
};
2011-06-15 04:31:41 +02:00
}
2011-06-18 10:29:38 +02:00
return base.GetFromDbConverter(destinationInfo, sourceType);
2011-06-15 04:31:41 +02:00
}
}
}