You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <summary>Cleans out the DB. You should only use this if you've overwritten a value, or if you've done a lot of single inserts, or if you need to clean up a database</summary>
41
-
/// <param name="dbCleanTo"></param>
39
+
40
+
/// <summary>Cleans out the database specified, and copies all of the contents of the other database into this one. You may be able to experience a smaller DB file if you've used StringDB to not to perfectionist values.</summary>
41
+
/// <param name="dbCleanTo">The database to clean up</param>
42
42
publicvoidCleanFrom(DatabasedbCleanTo){
43
43
this.InsertRange(FromDatabase(dbCleanTo));
44
+
}
45
+
46
+
/// <summary>Cleans out the current database, and copies all of the contents of this database into the other one. You may be able to experience a smaller DB file if you've used StringDB to not to perfectionist values.</summary>
47
+
/// <param name="dbCleanTo">The database that will be used to insert the other database's values into</param>
0 commit comments