From 3c5bdcbef83a6df19a5f9e332193f13b921740d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matija=20Ko=C5=BEelj?= Date: Thu, 26 Jan 2023 13:29:58 +0100 Subject: [PATCH] [WIP] Version bump --- src/Connected.Expressions/Translation/Binder.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Connected.Expressions/Translation/Binder.cs b/src/Connected.Expressions/Translation/Binder.cs index 099982f..7f983a6 100644 --- a/src/Connected.Expressions/Translation/Binder.cs +++ b/src/Connected.Expressions/Translation/Binder.cs @@ -682,7 +682,7 @@ public sealed class Binder : DatabaseVisitor { var alias = Alias.New(); var pc = ProjectColumns(projection.Projector, alias, projection.Select.Alias); - projection = new ProjectionExpression(new SelectExpression(alias, pc.Columns, projection.Select, where, null, null, false, null, take, isLast), pc.Projector); + projection = new ProjectionExpression(new SelectExpression(alias, pc.Columns, projection.Select.From, where, null, null, false, null, take, isLast), pc.Projector); } if (isRoot)