SQLProvider icon indicating copy to clipboard operation
SQLProvider copied to clipboard

A general F# SQL database erasing type provider, supporting LINQ queries, schema exploration, individuals, CRUD operations and much more besides.

Results 128 SQLProvider issues
Sort by recently updated
recently updated
newest added
trafficstars

**Describe the bug** A program with the `SqlDataProvider` for SQLite can be compiled with `dotnet build` (.NET SDK 6.0.102) but not in Visual Studio 2022 (17.0.7): **To Reproduce** The following...

**Is your feature request related to a problem? Please describe.** When inserting a record with child records, there is no guarantee that the child records will be created after the...

Some applications have table names with spaces using MSSQLSERVER provider ![image](https://user-images.githubusercontent.com/36763595/155171292-b5a56d05-89bd-46a0-b215-463716bfbf0f.png) querying tables without spaces works, all tables with spaces in the name fail ![image](https://user-images.githubusercontent.com/36763595/155171572-02a420f4-be1b-4294-bb71-620496597476.png)

I'm creating a tracking issue to help assess the status of .NET Core/.NET Standard support for SQLprovider. If people can help me define what we need to assess that would...

**Is your feature request related to a problem? Please describe.** Outdated documentation **Describe the solution you'd like** Is it possible to update the docs for .net core section of the...

The System.Data.SqlClient nuget package is (AFAIK) obsolete. It also doesn't work with F# scripts / FSI easily. The Microsoft.Data.SqlClient library does and as I understand it is the vehicle for...

**Describe the bug** I can't get most basic example like https://fsprojects.github.io/SQLProvider/core/sqlite.html working. **To Reproduce** Steps to reproduce the behavior: 1. Create new console application. ```sh dotnet new console -lang F#...

### Description I'm wanting to use Microsoft.Data.SqlClient with the [SSDT Provider](https://fsprojects.github.io/SQLProvider/core/mssqlssdt.html). [The documentation](https://fsprojects.github.io/SQLProvider/core/mssql.html#Using-Microsoft-Data-SqlClient-dll-instead-of-build-in-System-Data-SqlClient-dll) say I need to use `MSSQLSERVER_DYNAMIC`, but is it possible with `MSSQLSERVER_SSDT`? I've read the instructions in...

**Describe the bug** SqlException "Only one expression can be specified in the select list when the subquery is not introduced with EXISTS." returned when using a composed query when the...

**Describe the bug** When using composed queries an unexpected behavior occurs when a join is involved in a query. This results in a select with wrong values. See code examples...