Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
RodrigoBernardino authored Jan 8, 2018
1 parent 6e40364 commit d19e1a1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ You can add a new entity with or without nested entity properties.
var user = new User();
var wrappedNewUser = repository.Add(user); //without adding nested entity properties
var wrappedNewUser = repository.AddWithNestedProperties(user); //adding nested entity properties
if(wrappedNewUser.Any()) {
if(wrappedNewUser.Any())
{
return wrappedNewUser.Single();
}
```
Expand Down

0 comments on commit d19e1a1

Please sign in to comment.