Я использую Entity Framework Core для работы с базой данных PostgreSQL через провайдера данных Npgsql.Согласно Руководству по отображению даты / времени , NodaTime рекомендуется для отображения даты / времени в PostgreSQL.В руководстве по настройке следующий код включает отображение типов NodaTime:
protected override void OnConfiguring(DbContextOptionsBuilder builder)
{
builder.UseNpgsql("Host=localhost;Database=test;Username=npgsql_tests;Password=npgsql_tests",
o => o.UseNodaTime());
}
Но для NpgsqlDbContextOptionsBuilder
не существует метода расширения UseNodaTime()
.Я искал npgsql
исходный код, но не нашел этот метод расширения.Единственный, кого я нашел, был public static INpgsqlTypeMapper UseNodatime(this INpgsqlTypeMapper mapper)
в этом файле .
Мой .csproj
:
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Folder Include="wwwroot\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.AspNetCore.Cors" Version="2.1.0-rc1-final" />
<PackageReference Include="Microsoft.DotNet.Watcher.Tools" Version="2.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="2.1.0-rc1-final" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="2.1.0-rc1" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite" Version="2.1.0-rc1" />
<PackageReference Include="Npgsql.NodaTime" Version="1.0.0-rc1" />
</ItemGroup>
</Project>
Startup.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.HttpsPolicy;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using Microsoft.EntityFrameworkCore;
using Doko.Models;
using Doko.Filters;
using Npgsql;
namespace DokoDoko {
public class Startup {
public Startup(IConfiguration configuration) {
Configuration = configuration;
}
public IConfiguration Configuration { get; }
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services) {
services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1);
services.AddEntityFrameworkNpgsql().AddDbContext<DokoContext>(
options => options.UseNpgsql(
Configuration.GetConnectionString("DokoDatabase"),
o => {
o.UseNetTopologySuite();
}
)
);
services.AddCors();
services.AddScoped<AuthorizationFilter>();
NpgsqlConnection.GlobalTypeMapper.UseNodatime();
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IHostingEnvironment env) {
if (env.IsDevelopment()) {
app.UseDeveloperExceptionPage();
} else {
app.UseHsts();
}
app.UseHttpsRedirection();
app.UseMvc();
}
}
}