Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanMagnan committed Dec 18, 2017
1 parent ac74f57 commit ffe1c6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -13,7 +13,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);
```

Expand Down

0 comments on commit ffe1c6f

Please sign in to comment.