BlazarTech.QueryableValues
BlazarTech.QueryableValues copied to clipboard
This library allows you to efficiently compose an IEnumerable<T> in your Entity Framework Core queries when using the SQL Server database provider.
### Description Automatically treats `IEnumerable` types composed in a LINQ expression as if they were provided via the `AsQueryableValues` method. I'm assuming that the direct use of the `IEnumerable` type...
If we use this with [compiled models](https://learn.microsoft.com/en-us/ef/core/what-is-new/ef-core-6.0/whatsnew#compiled-models), the special types used behind the scenes breaks the build. After rebuilding/regenerating our compiled models we got a generated model that references the...
It has caught my attention that the use of the [`OPENJSON`] function is causing performance regressions in EF8, as reported in https://github.com/dotnet/efcore/issues/32394. This seems to be caused by the opaque...
I frequently have a list of entities that I want to "join" with a database table. I combined this project with LinqKit and created https://gist.github.com/andrewkittredge/ce322944caf5781eb7f4efade5c1266e. I am interested in you...
maybe it's already in the docs...and maybe i'm a bit off base (haven't gotten to look too deeply yet) but attempted to use this in a place where my queryable...