mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 08:37:28 +08:00
fix issue #IARU2B
This commit is contained in:
parent
0b0e7485ce
commit
b9ea8aa0d6
@ -94,7 +94,7 @@ namespace OpenAuth.Repository.Domain
|
||||
/// 前端界面是否缓存
|
||||
/// </summary>
|
||||
/// [Description("前端界面是否缓存")]
|
||||
public bool? KeepAlive { get; set; }
|
||||
public bool KeepAlive { get; set; }
|
||||
|
||||
}
|
||||
}
|
@ -95,6 +95,14 @@ namespace OpenAuth.Repository
|
||||
{
|
||||
property.SetValueConverter(boolToSmallIntConverter);
|
||||
}
|
||||
|
||||
//解决PostgreSQL时间戳问题
|
||||
if (Database.ProviderName == "Npgsql.EntityFrameworkCore.PostgreSQL" &&
|
||||
property.ClrType == typeof(DateTime))
|
||||
{
|
||||
property.SetValueConverter(new ValueConverter<DateTime, DateTime>(
|
||||
v => v.ToUniversalTime(), v => DateTime.SpecifyKind(v, DateTimeKind.Utc)));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user