Christof Senn

Results 21 comments of Christof Senn

Thanks for your valuable feedback. I've modified the sample projects so they should all build now from a fresh cloned repo. What's more, I've added some further information to my...

> "Only sources that implement 'IAsyncEnumerable' can be used for Entity Framework asynchronous operations." Having a second look, the error message actually indicates an issue for executing the query with...

Thanks for your feedback. Yes, this explains the error indeed: using EF Core extension method `ToListAsync()` [`Microsoft.EntityFrameworkCore.EntityFrameworkQueryableExtensions.ToListAsync(this IQueryable source)`] cannot work on client side as this would want to translate...

Closing this issue due to inactivity. Feel free to re-open if required.

Thanks for letting me know. Our readme file now has a link to your repo.

For your specific request: ``` C# // using Remote.Linq; using Remote.Linq.Text.Json; using System.Text.Json; System.Linq.Expressions.Expression query = item => item.Price > 100; Remote.Linq.Expressions.LambdaExpression remoteExpression = query.ToRemoteLinqExpression(); JsonSerializerOptions jsonSerializerOptions = new JsonSerializerOptions().ConfigureRemoteLinq();...

1. There are various method overloads allowing to provide a `Func queryableProvider` argument in place of a `DbContext`, which allows using custom logic to to resolve and amend the `IQueryable`...

adding the following _PropertyGroup_ to the _.pubxml_ seems to have solved the issue for me: ``` none false none $(NoWarn);SA0001 ``` Update [2023-08-21]: Setting these properties within _.pubxml_ only works...

> In my team we do store PDB files to symbol server. So I want to generate PDBs. At the same time we want to create Docker container with the...

> May be we do something wrong, but we build a Linux executable and put the content of `publish` folder into Docker container. This `publish` folder seems to always contain...