Could we map otherwise unrecogized instances of ValueTuple to row constructors?
vartest=("red",4,2.2);ctx.SomeEntity.Where(x =>(x.Color,x.Price,x.Tax)==test);SELECT*FROM"SomeEntity"as x
WHERE ROW(x."Color", x."Price", x."Tax") = @__test_0;
/cc @roji
Related
https://www.postgresql.org/docs/10/static/functions-comparisons.html#ROW-WISE-COMPARISON
Could we map otherwise unrecogized instances of
ValueTupleto row constructors?/cc @roji
Related
https://www.postgresql.org/docs/10/static/functions-comparisons.html#ROW-WISE-COMPARISON