mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
45 lines
978 B
C#
45 lines
978 B
C#
using System;
|
|
using Marr.Data.Converters;
|
|
using Marr.Data.Mapping;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Common.Serializer;
|
|
|
|
namespace NzbDrone.Core.Datastore.Converters
|
|
{
|
|
public class EmbeddedDocumentConverter : IConverter
|
|
{
|
|
|
|
public object FromDB(ColumnMap map, object dbValue)
|
|
{
|
|
if (dbValue == DBNull.Value)
|
|
{
|
|
return DBNull.Value;
|
|
}
|
|
|
|
var stringValue = (string)dbValue;
|
|
|
|
if (string.IsNullOrWhiteSpace(stringValue))
|
|
{
|
|
return null;
|
|
}
|
|
|
|
return Json.Deserialize(stringValue, map.FieldType);
|
|
}
|
|
|
|
public object ToDB(object clrValue)
|
|
{
|
|
if (clrValue == null) return null;
|
|
|
|
var json = Json.Serialize(clrValue);
|
|
return json;
|
|
}
|
|
|
|
public Type DbType
|
|
{
|
|
get
|
|
{
|
|
return typeof(string);
|
|
}
|
|
}
|
|
}
|
|
} |