#
npgsql
Here are 60 public repositories matching this topic...
rlightner
commented
Sep 2, 2020
date_trunc('week', now()::date
Looking to make a call similar to this, and can't figure out what should be used now. I've also looked at EF.Property<DateTime>() but that doesn't seem to help.
SQL Server and PostgreSQL query execution plan visualizer for LINQPad
-
Updated
Sep 14, 2021 - C#
Thin F# wrapper around Npgsql, the PostgreSQL database driver for .NET
-
Updated
Oct 23, 2021 - F#
Simple Wrapper around Npgsql for using PostgreSQL COPY functions.
-
Updated
Sep 9, 2021 - C#
sebastian
commented
Jan 13, 2021
Your SQL parser parses the distinct keyword (when used in the context of a list of columns being selected), but does not retain it in the purposes of the AST.
As an example, take the following test where the query
SELECT DISTINCT username, user_id FROM usersPowerShell module for querying various SQL databases
-
Updated
Aug 25, 2021 - PowerShell
Demo application of my speech 'Add OData Support to Your Asp.Net Core Web Api' at Dotnet Konf İstanbul. http://dotnetkonf.com/
-
Updated
Nov 2, 2019 - C#
Companion Cube bot for Discord. Features tags, eval, music, RNG, etc.
roslyn
tags
dotnet
discord
currency
postgresql
discord-bot
discord-api
npgsql
dotnet-core
dsharpplus
companion-cube
-
Updated
Jan 29, 2022
F# Wrapper for PostgreSQL using Npgsql and Vp.FSharp.Sql
-
Updated
Oct 17, 2021 - F#
.NET Standard 2.0 library with extensions methods for PostGIS geometries methods access with linq2db
-
Updated
Jan 8, 2022 - C#
CSharp - Npgsql - PostgreSQL (Dynamic SQL Handler Library )
-
Updated
Jun 1, 2018 - C#
Minimal ASP.NET Core JSON API. Data secured with json web tokens, JWT, and ASP.Net Core Identity membership system for login.
cross-platform
postgresql
entity-framework
authorization
npgsql
asp-net-core
jwt-authentication
mvc-core
identity-framework
-
Updated
May 15, 2017 - C#
Learn to visually use PostGIS 3D functions to create 3D models!
-
Updated
Aug 12, 2021 - C#
"Base de datos" course project: gui to access a postgreSQL database / Electoral system
-
Updated
Nov 7, 2017 - C#
ASP.Net Core HTTP routing microservice that is lightweight, no MVC, and cross-platform, no IIS.
-
Updated
Mar 22, 2017 - C#
PGroonga extension for Npgsql.EntityFrameworkCore.PostgreSQL (PostgreSQL / Npgsql Entity Framework Core provider). It enable the ability to do full text search, especially Chinese, Japanese, and so on, with EntityFramework Core, PostgreSQL and Groonga.
-
Updated
Jan 7, 2021 - PowerShell
A starter ASP.NET Core 2.0 project that I have removed SqlServer and added POSTGRESQL references with EntityFrameworkCore.
-
Updated
Aug 21, 2018 - C#
Dapper and Postgres implementation of ASP.NET Core Identity stores.
-
Updated
Oct 27, 2019 - C#
Provides a simple wrapper around Npgsql and its PostgreSQL COPY function.
-
Updated
Apr 24, 2020 - C#
Fullfil your five year plan in just under a year using your existing infrastructure dependencies. The Central Committee will praise thy initiative!
-
Updated
Aug 5, 2021 - C#
Canvas artwork is a ASP.net MVC web app. you can paint pictures on the web, using Literally Canvas as a drawing widget and save them. you can also edit and delete your artworks.
-
Updated
Dec 28, 2019 - JavaScript
Simple GUI application for visual work with the PostgresSQL database.
-
Updated
Mar 17, 2021 - C#
cAlgo robot saves symbol data into PostgreSQL database
-
Updated
May 31, 2018 - C#
.NET Core and React web app with web scraper that notifies a user when a specified item falls below a certain price. Also provides the price trend for said item(s). Compatible with Best Buy, Kijiji, and Chapters/Indigo.
react
javascript
c-sharp
postgres
reactjs
material-ui
postgresql
webscraper
webapp
npgsql
entity-framework-core
indigo
webscraping
kijiji
linq-to-sql
chapters
bestbuy
webscraper-website
netcore3
-
Updated
Sep 21, 2020 - JavaScript
Learning .NET Core MVC with Npgsql and EF
-
Updated
May 30, 2020 - C#
Improve this page
Add a description, image, and links to the npgsql topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the npgsql topic, visit your repo's landing page and select "manage topics."


Currently suggested ways to create and map enums are:
ModelBuilder.HasPostgresEnum<TEnum>() //to create enum from DbContext.OnModelCreating()NpgsqlConnection.GlobalTypeMapper.MapEnum<TEnum>() //to map enumCan you please provide non-generic versions:
ModelBuilder.HasPostgresEnum(Type enumType)NpgsqlConnection.GlobalTypeMapper.MapEnum(Type enumType)This would allow to l