Radarr/NzbDrone.Core/Datastore/CustomeMapper.cs

48 lines
1.8 KiB
C#
Raw Normal View History

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