Exemplo n.º 1
0
 /// <summary>
 /// Creates database instance with specified path
 /// </summary>
 /// <param name="path">Path to database storage folder (relative to home folder, default app storage in case home is null)</param>
 /// <param name="home">Home folder (string or StorageFolder instance) (optional)</param>
 public DbInstance(string path, object home = null)
 {
     _schema = Storage.OpenSchema(path, home);
 }