Esempio n. 1
0
 public void AddFoosballGameListItem(FoosballGameListItem game)
 {
     using (var db = new LiteDatabase(_dbName))
     {
         var collection = db.GetCollection <FoosballGameListItem>(_listCollection);
         collection.EnsureIndex(x => x.Id);
         collection.Insert(game);
     }
 }
Esempio n. 2
0
 public void AddFoosballGameListItem(FoosballGameListItem game)
 {
     _listItems.Add(game);
 }