LINQKit icon indicating copy to clipboard operation
LINQKit copied to clipboard

LINQKit is a free set of extensions for LINQ to SQL and Entity Framework power users.

Results 47 LINQKit issues
Sort by recently updated
recently updated
newest added

Probably related to #170 and/or #171. With LinqKit.Core 1.2.2, the assembly includes a Timestamp namespace with no public types in it. This raises [compiler error CS0118](https://docs.microsoft.com/en-us/dotnet/csharp/misc/cs0118?f1url=%3FappId%3Droslyn%26k%3Dk(CS0118)) whenever using any type...

First off, THANK YOU SO MUCH for making this project. I recently [ran into a little ordeal with EFCore's Compiled Queries](https://github.com/dotnet/efcore/issues/25679) and have started to explore expression builders. This one...

This should archive the same result, but would be way more readable. Also it doesn't require reflection. It may also be possible to merge the remapping from a separate Select...

Not sure whether this should work or not, but I'm struggling to use the query optimizer with EFCore. Seems that a simple query such as the following one fails: ```...

Given following code snippets ```csharp public interface ICommon {} public class ModelA: ICommon { } public class ModelB: ICommon { } public class Data {} public static class Converter {...

The ForEach extension method recently added to LinqKit conflicts with the (I think) commonly used ForEach extension method in MoreLinq. Since it is in the main LinqKit namespace, there is...

If you use ExpressionVisitor, the one in LINQKit conflicts with the one in .Net 4.0 with using LINQKit; - does there need to be releases for .Net 4 and above...

question

When I tried the following code I get an runtime error. I looks that the asExpandable is not working for select ``` private async Task GetSurveyChapters(int surveyId) { return await...

I've created a very sample solution to reproduce the issue: I only use the LinqKit.Microsoft.EntityFrameworkCore 5.0.x package, do I need something more? The code below was working fine in EF...

Stack: .NET v4.5.2 EntityFramework v6.1.3 LinqKit v1.1.8 In EF, you can compose IQueryables using Contains(...) and the resulting IQueryable will execute in a single Db hit. E.g.: ```cs var query...