File tree 2 files changed +4
-4
lines changed
source/includes/code-examples/replace-one
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ private static ReplaceOneResult ReplaceOneRestaurant()
59
59
// Generates a new restaurant document
60
60
Restaurant newPizzaRestaurant = new ( )
61
61
{
62
- Id = oldId
62
+ Id = oldId ,
63
63
Name = "Mongo's Pizza" ,
64
64
Cuisine = "Pizza" ,
65
65
Address = new Address ( )
@@ -89,7 +89,7 @@ private static ReplaceOneResult ReplaceOneRestaurantWithOptions()
89
89
// Generates a new restaurant document
90
90
Restaurant newPizzaRestaurant = new ( )
91
91
{
92
- Id = oldId
92
+ Id = oldId ,
93
93
Name = "Mongo's Pizza" ,
94
94
Cuisine = "Pizza" ,
95
95
Address = new Address ( )
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ private static async Task<ReplaceOneResult> ReplaceOneRestaurantAsync()
59
59
// Generates a new restaurant document
60
60
Restaurant newPizzaRestaurant = new ( )
61
61
{
62
- Id = oldId
62
+ Id = oldId ,
63
63
Name = "Mongo's Pizza" ,
64
64
Cuisine = "Pizza" ,
65
65
Address = new Address ( )
@@ -88,7 +88,7 @@ private static async Task<ReplaceOneResult> ReplaceOneRestaurantAsyncWithOptions
88
88
// Generates a new restaurant document
89
89
Restaurant newPizzaRestaurant = new ( )
90
90
{
91
- Id = oldId
91
+ Id = oldId ,
92
92
Name = "Mongo's Pizza" ,
93
93
Cuisine = "Pizza" ,
94
94
Address = new Address ( )
You can’t perform that action at this time.
0 commit comments