1 instantiation of Entry
Mongo.ApiService (1)
Program.cs (1)
24
var newEntry = new
Entry
();
3 references to Entry
Mongo.ApiService (3)
Program.cs (3)
24
var
newEntry = new Entry();
25
await db.GetCollection<
Entry
>(collectionName).InsertOneAsync(newEntry);
27
var items = await db.GetCollection<
Entry
>(collectionName).FindAsync(_ => true);