Example #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SQLiteMemoizationStoreConfiguration"/> class.
 /// </summary>
 public SQLiteMemoizationStoreConfiguration(AbsolutePath path)
 {
     Database = new SQLiteDatabaseConfiguration(path);
 }
Example #2
0
 public SQLiteTable(SQLiteDatabaseConfiguration configuration) : base(configuration)
 {
     CreateTable();
 }