nein-linq icon indicating copy to clipboard operation
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...

Results 7 nein-linq issues
Sort by recently updated
recently updated
newest added

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...

bug

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...

enhancement

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...

question

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...

enhancement

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...

enhancement

Hi, I want to ask if in future you plan to support methods like: IQueryable SomeStoredProcedure/Function([]) Regards Luigi

enhancement