mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
31 lines
647 B
C#
31 lines
647 B
C#
using System;
|
|
using Marr.Data.Converters;
|
|
using Marr.Data.Mapping;
|
|
|
|
namespace NzbDrone.Core.Datastore.Converters
|
|
{
|
|
public class Int32Converter : IConverter
|
|
{
|
|
public object FromDB(ColumnMap map, object dbValue)
|
|
{
|
|
if (dbValue == DBNull.Value)
|
|
{
|
|
return DBNull.Value;
|
|
}
|
|
|
|
if (dbValue is Int32)
|
|
{
|
|
return dbValue;
|
|
}
|
|
|
|
return Convert.ToInt32(dbValue);
|
|
}
|
|
|
|
public object ToDB(object clrValue)
|
|
{
|
|
return clrValue;
|
|
}
|
|
|
|
public Type DbType { get; private set; }
|
|
}
|
|
} |