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 48 LINQKit issues
Sort by recently updated
recently updated
newest added

Is there any solution for this? ` query1 = query1.AsExpandable().Where(expression); // After using AsExpandable I cannot cast my query to ObjectQuery to trace sql command on EF6, // using ObjectContext...

I have a couple of (complicated) expressions that get reused allot so I would like to have the tagging support from inside the expression so I don't have to specify...

Hi, I was wondering if there was an option to get the linq out of the Sql. like mentioned [here](https://stackoverflow.com/a/589138/6085193), but it doesnt work for me and i was looking...

Hi, I have the expression builder method in VB.net ``` vb Public Shared Function CreateBaseFilter(Of returnType As PatientVisitBase)(appointmentId As String, patientId As String, visitId As String, waitingRoomId As Integer?, route...

Given the following data-structure I do have 3 tables. - tblUser (holding the users of the application) - tblRole (the available roles of the application) - tblUserRole (the n-to-m relation...

We've noticed that your package on NuGet.org is missing a README file. ## Why READMEs are Important Our customer research indicates that one of the top problems that package consumers...

Bumps [Microsoft.Data.SqlClient](https://github.com/dotnet/sqlclient) from 1.1.4 to 2.1.7. Release notes Sourced from Microsoft.Data.SqlClient's releases. Stable Release v2.1.7 [Stable release 2.1.7] - 2024-01-09 Fixed Fixed encryption downgrade issue. CVE-2024-0056 Fixed certificate chain validation...

dependencies

When using JSON projection for nested elements the Code is quite lenghty: ```C# return t => { Field1 = t.JsonData.RootElement.GetProperty("outer").GetProperty("nested1").GetProperty("nested2").GetString() } ``` This would read much nicer as ```C# return...

Currently you can't use `Expression.Invoke` with a delegate as first argument, as LINQKit expects that you only invoke other lambdas. While that may be enough for EF Core, there are...

feature

(Apologies if this has been covered elsewhere, I wasn't able to find discussion of this case) ## Context We have an extension function to enable cleaner queries to support conditional...