FSharp.Linq.ComposableQuery
FSharp.Linq.ComposableQuery copied to clipboard
Compositional Query Framework for F# Queries, based on "A Practical Theory of Language-Integrated Query"
I am using this through SQLProvider. Let me know if this issue should be posted in that repo instead. Consider the following: ```f# type OrgId = OrgId of int let...
### Description Consider this simple database structure (I'm using MS SQL Express 2014): ```sql create table dbo.Users(Id Int primary key, Name NVarChar(max), Role NVarChar(max)) insert into dbo.Users(Id, Name, Role) values...
My primary goal was to get this repo setup so people can clone it run `build.cmd/build.sh` and have everything compile and run without any manual configuration. To do this I...
I was using query and dbquery as the standard query expression and the replacement from ComposableQuery respectively and comparing the generated SQL. I found an example where query works but...
See https://travis-ci.org/fsprojects/FSharp.Linq.ComposableQuery/builds I'm not sure what the problem is, but it would be great to make sure this builds and passes tests on OSX/Linux
The following code (run against the db.People database in the tests) fails at run time ``` let test3' = query { for u in db.People do if 0
See issue here: https://github.com/fsprojects/SQLProvider/issues/86 "The FSharpComposableQuery nuget package is an interesting approach to normalizing F# queries to allow them to be more compositional and safe. It would be interesting and...
The default `IEnumerable` (also: `IQueryable`, `IGrouping`) comparer checks for referential rather than structural equality. This causes queries that output records with such elements as values to fail. To reproduce the...
There are a number of terms which are valid input to the default QueryBuilder but not to the **FSharpComposableQuery** builder. This happens since not all valid literals of type `FSharpExpr`...