Npgsql is the .NET data provider for Postgresql. It allows any program developed for .NET framework to access a Postgresql database server. It is implemented in 100% C# code. Postgresql versions since 9.0 are officially supported, others may work.
Hi Guys,
Got a question. I have a column having type astext[]
, while storing data I am facing no problem. but while querying its not returning anything. e.g.var query = dbContext.Users.Where(x=>x.Aliases.Contains("somevalue")).Select(a=>a);
Solved!! Upgraded to 5.0.0-rc1
dotnet add package Npgsql.EntityFrameworkCore.PostgreSQL --version 5.0.0-rc1
Thanks @AlbertoPa for your time :)