Example #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);
     }
 }
Example #2
0
 public void AddFoosballGameListItem(FoosballGameListItem game)
 {
     _listItems.Add(game);
 }