Zev Spitz
Zev Spitz
@justinushermawan As a workaround, you could do the following: ```csharp var result = queryable.Where("Values[1].Equals(\"Yeremia\") || Values[2].Equals(24)").ToList(); ```
@StefH @JonathanMagnan Could this issue be fixed by checking if there is an operator overload for `=` between the two sides, and if not then replacing with a call to...
This is not an issue specific to Dynamic LINQ. I believe the following query would fall on in-memory objects: ```csharp IQueryable qry = new List().AsQueryable().Cast(); ``` even though the corresponding...
If I understand correctly, the following code: ```csharp using System.Linq.Expressions; using static System.Console; using static System.Linq.Expressions.Expression; using System.Linq.Dynamic.Core.Parser; using System.Linq.Dynamic.Core; Expression expr = x => x.ToString(); WriteLine( ((MethodCallExpression)expr.Body).Method.DeclaringType ); var...
Not familiar with PostgreSQL, but how would you call the `Unaccent` function from a strongly-typed query in C#? You'd probably use [this](https://www.npgsql.org/efcore/api/Microsoft.EntityFrameworkCore.NpgsqlFullTextSearchDbFunctionsExtensions.html?q=unaccent#Microsoft_EntityFrameworkCore_NpgsqlFullTextSearchDbFunctionsExtensions_Unaccent_DbFunctions_System_String_) or another overload. I would suggest registering the...
On which type is the `Unaccent` method defined for the EF6 provider? I can see that for the EF Core provider it's defined on the `static` class `Microsoft.EntityFrameworkCore.NpgsqlFullTextSearchDbFunctions`, but I...
Do you want the `Parent`s who have a `Child` in `Childs` whose `ChildProp1` matches `"test"`? ```csharp Parents.Where("Childs.Any(ChildProp1 == \"test\")") ``` Or do you want all the `Childs` whose `ChildProp1` matches...
Actually, I'm not sure this is something that needs to be done manually; I imagine it could be done as part of #1902 .
@ldrek Maybe create a PR for the documentation here?
@mhammond There are [28 HTML files](https://github.com/mhammond/pywin32/search?utf8=%E2%9C%93&q=extension%3Ahtml&type=) scattered in various places within the project, documenting different aspects of PythonWin. I would first run some kind of HTML-to-Markdown converter, and then go...