1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00
Sonarr/NzbDrone.Core/Datastore/CustomeMapper.cs

44 lines
1.6 KiB
C#
Raw Normal View History

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