SqlHydra icon indicating copy to clipboard operation
SqlHydra copied to clipboard

SqlHydra is a suite of NuGet packages for working with databases in F# including code generation tools and query expressions.

Results 18 SqlHydra issues
Sort by recently updated
recently updated
newest added

Implements https://github.com/JordanMarr/SqlHydra/issues/32

It appears that for schema like following: ```sql create table draft_item ( topic text not null, id text not null, timestamp timestamptz not null, sequence bigint not null, payload jsonb...

Hello and thanks for this awesome library! While we have been successful in utilizing it for setup, type generation and querying / inserting data into our database, we were wondering...

First of all - super awesome library! Just running into a problem relating to joining on the same table more than once in a query. For example, given the following...

## `DateOnly` Support * [x] SqlHydra.Query will need to manually convert `DateTime` parameter values to `DateOnly`. * [x] SqlHydra.* provider packages will need to generate and use a custom `GetDateOnly`...

On the readme there is this note: > To insert multiple entities in one query, use the `entities` operation in conjunction with the `AtLeastOne` type to ensure that at least...

Hi! We're using a Postgres database with some views to read from. I would like to make them materialized views instead for performance reasons (the underlying data isn't updated very...

Hello! I started to use SQLHydra but had to move away from it because I couldn't find a simple and elegant way to use Domain Driven Design. But today I...

Hello, I was wondering if you would be open to the idea of either adding and/or receiving a PR for User Defined Functions and Table Valued Functions? I use MS...

I get an exception selecting from SQL Server tables with Temporal Versioning turned on when using the 'HIDDEN' column feature for the temporal columns. Here's an example, in SQL: ```sql...