Skip to content

Commit

Permalink
Update overview.md
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanMagnan authored Dec 18, 2017
1 parent ffe1c6f commit 1e51ac8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/pages/tutorials/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ DapperPlusManager.Entity<Order>().Table("Orders").Identity(x => x.ID);
connection.BulkInsert(orders)
.AlsoInsert(order => order.Items);
.Include(order => order.ThenMerge(order => order.Invoice)
.also(invoice => invoice.Items))
.AlsoMerge(invoice => invoice.Items))
.AlsoMerge(order => order.ShippingAddress);
{% endhighlight %}

Expand Down

0 comments on commit 1e51ac8

Please sign in to comment.