innerJoin compilation error in v2.2.0+
See original GitHub issueThe code compiled OK on v2.1.0:
select {
table "Players"
innerJoin "Games" "Id" "GameId"
where (eq "Players.Id" playerId.Value)
}
However with v2.2.0 and v.2.3.0, the compiler reported an error as below:
[FS3087] The custom operation 'innerJoin' refers to a method which is overloaded. The implementations of custom operations may not be overloaded.
I tried with innerJoin "Games" [ ("Id", "GameId") ]
but the error is still there.
Issue Analytics
- State:
- Created 2 years ago
- Comments:8 (5 by maintainers)
Top Results From Across the Web
sql - Multiple inner joins returning Error
Status FROM tblEvent -- 2 joins to same table INNER JOIN tblEventService es1 ON tblEvent.EventID = es1.EventID INNER JOIN tblEventService ...
Read more >“Column does not exist” with INNER JOIN and MAX query ...
I'm not sure if this is what are you looking for, but I've generated next example: create table customers ( id int not...
Read more >Joins in Impala SELECT Statements
A join query is a SELECT statement that combines data from two or more tables, and returns a result set containing items from...
Read more >Configuring how Relationship Joins
Configuring how Relationship Joins¶. relationship() will normally create a join between two tables by examining the foreign key relationship between the two ...
Read more >syntax error line 6 at position 35 unexpected 'ON'.
SQL join issues - SQL compilation error: syntax error line 6 at position 35 unexpected 'ON'. Select A.col1,B.col2 from tbl A. inner join...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Nope, please use the
preview
flag in fsproj. We will see where it will go with v3, but my goal is to aim directly for .NET6I have the exact same issue, also on 5. Do I really have to downgrade to dotnet core 3.1 to be able to use version > 2.1.0 of this library?