1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 21:18:13 -05:00

always specify DateTimeKind.Utc for dapper

This commit is contained in:
Kyle Spearrin 2018-05-21 17:12:57 -04:00
parent 4dbea821a4
commit ffa0a1a02c
2 changed files with 22 additions and 0 deletions

View File

@ -1,9 +1,15 @@
using System;
using Dapper;
namespace Bit.Core.Repositories.SqlServer
{
public abstract class BaseRepository
{
static BaseRepository()
{
SqlMapper.AddTypeHandler(new DateTimeHandler());
}
public BaseRepository(string connectionString)
{
if(string.IsNullOrWhiteSpace(connectionString))

View File

@ -0,0 +1,16 @@
using System;
using System.Data;
using Dapper;
public class DateTimeHandler : SqlMapper.TypeHandler<DateTime>
{
public override void SetValue(IDbDataParameter parameter, DateTime value)
{
parameter.Value = value;
}
public override DateTime Parse(object value)
{
return DateTime.SpecifyKind((DateTime)value, DateTimeKind.Utc);
}
}