Skip to content

Conversation

@Thorium
Copy link
Member

@Thorium Thorium commented Dec 22, 2018

This is proposed fix for #588

It's not having support of leftOuterJoin Linq-operator nor making working with F# query { ... } simple.

But it does allow left join to non-foreign-key columns with op_bangbang (!!).

        query {
            for cust in dc.Main.Customers do
            join ord in (!!) dc.Main.Orders on (cust.CustomerId = ord.CustomerId)
            select (cust.CustomerId, ord.OrderDate)
        } |> Seq.toList

@Thorium Thorium merged commit 588e1ff into master Dec 23, 2018
@Thorium Thorium deleted the free-left-join branch January 2, 2019 14:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants