mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
28 lines
574 B
C#
28 lines
574 B
C#
using System;
|
|
using Marr.Data.Converters;
|
|
using Marr.Data.Mapping;
|
|
|
|
namespace NzbDrone.Core.Datastore.Converters
|
|
{
|
|
public class UtcConverter : IConverter
|
|
{
|
|
public object FromDB(ColumnMap map, object dbValue)
|
|
{
|
|
return dbValue;
|
|
}
|
|
|
|
public object ToDB(object clrValue)
|
|
{
|
|
var dateTime = (DateTime)clrValue;
|
|
return dateTime.ToUniversalTime();
|
|
}
|
|
|
|
public Type DbType
|
|
{
|
|
get
|
|
{
|
|
return typeof(DateTime);
|
|
}
|
|
}
|
|
}
|
|
} |