mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 18:42:42 +01:00
36 lines
1.4 KiB
C#
36 lines
1.4 KiB
C#
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);
|
|
return (DayOfWeek?)value;
|
|
};
|
|
}
|
|
|
|
return delegate(object s)
|
|
{
|
|
int value;
|
|
Int32.TryParse(s.ToString(), out value);
|
|
return value;
|
|
};
|
|
}
|
|
|
|
return base.GetFromDbConverter(destinationInfo, sourceType);
|
|
}
|
|
}
|
|
} |