File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
source/includes/fundamentals/code-examples/atlas-vector-search Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -46,10 +46,10 @@ private static void Setup()
46
46
var camelCaseConvention = new ConventionPack { new CamelCaseElementNameConvention ( ) } ;
47
47
ConventionRegistry . Register ( "CamelCase" , camelCaseConvention , type => true ) ;
48
48
49
- // Establish the connection to MongoDB and get the restaurants database
49
+ // Establish the connection to MongoDB and get the embedded_movies database
50
50
var mongoClient = new MongoClient ( _mongoConnectionString ) ;
51
- var restaurantsDatabase = mongoClient . GetDatabase ( "sample_mflix" ) ;
52
- collection = restaurantsDatabase . GetCollection < Movie > ( "embedded_movies" ) ;
51
+ var movieDatabase = mongoClient . GetDatabase ( "sample_mflix" ) ;
52
+ collection = movieDatabase . GetCollection < Movie > ( "embedded_movies" ) ;
53
53
}
54
54
55
55
private static void BuildersExample ( )
You can’t perform that action at this time.
0 commit comments