Npgsql is the .NET data provider for PostgreSQL.
I just learn how to connect C# and PostgresSQL. I want to INSERT data from tb1(Textbox) and tb2 to …
c# .net postgresql npgsqlCode is simple. Tag.cs entity: public partial class Tag { [Key] [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int Id { get; set; } public …
asp.net-core entity-framework-core auto-increment npgsqlI am using Npgsql 3.0.3.0 and PetaPoco latest version. When I run this command: var dateCreated = DateTime.Now; // just an example …
c# postgresql npgsql petapocoI am checking out PostgreSQL as potential substitute to SQLServer, I created a test table in a test database in …
c# database postgresql datasource npgsqlThis code is not working. Can anyone direct me where I can find examples of creating a Postgresql database and …
c# postgresql npgsqlI have a filter object to query a table with many columns, and rather than write a condition covering all …
sql postgresql data-access-layer npgsqlI'm trying to select a number of fields, one of which needs to be an array with each element of …
sql database postgresql npgsqlI have a web project build on .net framework 4.5.1. We are trying to added PostgreSQL support for the project. Using …
c# nuget npgsqlI am using the Npgsql 2.0.11.94 in a C# .NET 4.0 application to connect to a PostgreSql database. I have formed the …
c# npgsqlMy Npgsql version 3.2.5 - Postgresql 9.6 I get this error with CommandType.StoredProcedure (but CommandType.Text works): Npgsql.PostgresException: '42883: function …
c# postgresql npgsql stored-functions