iqtoolkit
iqtoolkit copied to clipboard
A Toolkit for building LINQ IQueryable providers. This is the official move of my IQToolkit project from CodePlex.
I cannot find the NuGet package for IQToolkit 2.0, can you please create one?
```c# public class BaseClass { public int ID { get; set; } } public class SubClass : BaseClass { } var param = Expression.Parameter(typeof(SubClass)); var body = Expression.Property(param, "ID"); var...
Dear Matt, great work! I’m currently evaluating IQToolkit to access MS Access databases. I have download and build the latest version successfully but run into the following issues: when I...
Any chance you will release this built for .net standard?
I remember reading these post a long time ago and I found them to be beneficial for understanding the inner workings of this project. I think it would be nice...
Based on Test Database (Northwind), Consider we are trying to query `Order Details` table to get related records to an specific customer: Note: _I declared one missed association field `Order`...
Hello Matthew and other contributors, I'm Tom Wouters, a senior architect working on a solution based on iqtoolkit for advanced mapping. We currently use iqtoolkit as our core engine and...
Fascinating work that I would like to leverage with Dapper as ORM. Has anyone any hint about where or how I could the SQL generation part from the execution part...
Bumps [System.Data.SqlClient](https://github.com/dotnet/corefx) from 4.4.0 to 4.8.6. Release notes Sourced from System.Data.SqlClient's releases. .NET Core 2.1.0 RC1 Release Notes Known Issues Download and Install Repos CoreCLR CoreFX Core-Setup CLI Commits See...
Please note this applies to the modern branch. Minimal example based on the Northwind tests. This leads to the association between the tables being lost and so the resultant SQL...