Esempio n. 1
0
 private void Preserve()
 {
     var indexByMonth = new SVIndexByMonth
     {
         Id = GetCurrentId(),
         SVIndices = this.SVIndices
     };
     db.Preserve(indexByMonth);
 }
Esempio n. 2
0
 public static void Preserve(this MongoDatabase db, SVIndexByMonth indexByMonth)
 {
     db.GetCollection<SVIndexByMonth>("SVIndexByMonth").Save(indexByMonth);
 }