2013-03-26 05:51:56 +00:00
|
|
|
|
using System;
|
|
|
|
|
using Marr.Data.Converters;
|
|
|
|
|
using Marr.Data.Mapping;
|
2013-05-12 15:18:17 +00:00
|
|
|
|
using NzbDrone.Common.Serializer;
|
2013-03-26 05:51:56 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Datastore.Converters
|
|
|
|
|
{
|
|
|
|
|
public class EmbeddedDocumentConverter : IConverter
|
|
|
|
|
{
|
2013-04-17 23:32:06 +00:00
|
|
|
|
|
2013-03-26 05:51:56 +00:00
|
|
|
|
public object FromDB(ColumnMap map, object dbValue)
|
|
|
|
|
{
|
|
|
|
|
if (dbValue == DBNull.Value)
|
|
|
|
|
{
|
|
|
|
|
return DBNull.Value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var stringValue = (string)dbValue;
|
|
|
|
|
|
|
|
|
|
if (string.IsNullOrWhiteSpace(stringValue))
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-29 21:29:51 +00:00
|
|
|
|
return Json.Deserialize(stringValue, map.FieldType);
|
2013-03-26 05:51:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public object ToDB(object clrValue)
|
|
|
|
|
{
|
|
|
|
|
if (clrValue == null) return null;
|
|
|
|
|
|
2013-05-29 21:29:51 +00:00
|
|
|
|
return clrValue.ToJson();
|
2013-03-26 05:51:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Type DbType
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return typeof(string);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|