nein-linq
nein-linq copied to clipboard
NeinLinq provides helpful extensions for using LINQ providers such as Entity Framework that support only a minor subset of .NET functions, reusing functions, rewriting queries, even making them null-s...
Having EntityFrameworkCore version of package just upgraded the app from .Net Core 5 to .Net Core 6. Out of sudden queries with `ToEntityInjectable()` stopped working with translation error. Switching to...
This works: ```csharp [InjectLambda] public decimal Total => TotalExpr.Compiled(this); // **Property** private static CachedExpression TotalExpr { get; } = new(order => order.Rows.Sum(row => row.Total)); ``` But changing the property to...
Hi, please feel free to close this if you feel I should ask this somewhere else. Today I'm using LinqKit to be able to reuse some Expression for selecting from...
Hi, I'm having some problems with reusing expressions and stumbled upon this really nice library! Now I wonder if the following is already possible with NeinLinq and if not if...
I'm using NeinLinq `Dynamic query filtering / sorting` with MongoDB. Everything's ok for strings/ints/etc, but there are issues if I try to filter by properties of `BsonValue` type: ``` System.ArgumentException...
cc @Shaddix
Hi, I want to ask if in future you plan to support methods like: IQueryable SomeStoredProcedure/Function([]) Regards Luigi