You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
986 B
43 lines
986 B
using System;
|
|
using Marr.Data.Converters;
|
|
using Marr.Data.Mapping;
|
|
using NzbDrone.Core.Qualities;
|
|
|
|
namespace NzbDrone.Core.Datastore.Converters
|
|
{
|
|
public class QualityIntConverter : IConverter
|
|
{
|
|
public object FromDB(ColumnMap map, object dbValue)
|
|
{
|
|
if (dbValue == DBNull.Value)
|
|
{
|
|
return Quality.Unknown;
|
|
}
|
|
|
|
var val = Convert.ToInt32(dbValue);
|
|
|
|
return (Quality)val;
|
|
}
|
|
|
|
public object ToDB(object clrValue)
|
|
{
|
|
if(clrValue == null) return 0;
|
|
|
|
if(clrValue as Quality == null)
|
|
{
|
|
throw new InvalidOperationException("Attempted to save a quality that isn't really a quality");
|
|
}
|
|
|
|
var quality = clrValue as Quality;
|
|
return (int)quality;
|
|
}
|
|
|
|
public Type DbType
|
|
{
|
|
get
|
|
{
|
|
return typeof(int);
|
|
}
|
|
}
|
|
}
|
|
} |