public DynamicParametersFactory(ISQLiteContext context, string tableName )
        {
            _context = context;
            _tableName = tableName;
            _columns = from DataRow row in context.Connection.GetSchema("COLUMNS").Rows
                       where StringComparer.InvariantCultureIgnoreCase.Equals(tableName, row["TABLE_NAME"])
                       select row;
        }
 public DynamicParametersFactory(ISQLiteContext context, string tableName)
 {
     _context   = context;
     _tableName = tableName;
     _columns   = from DataRow row in context.Connection.GetSchema("COLUMNS").Rows
                  where StringComparer.InvariantCultureIgnoreCase.Equals(tableName, row["TABLE_NAME"])
                  select row;
 }
Example #3
0
 public SQLiteRootNodeFactory(ISQLiteContext context)
 {
     _sqliteContext = context;
 }
 public SQLiteEventStore(ISQLiteContext context, IPropertyBagConverter converter)
 {
     _context = context;
     _converter = converter;
 }
 public SQLiteEventStore(ISQLiteContext context) : this(context, new PropertyBagConverter())
 {
 }
Example #6
0
 public SQLitePathNodeProcessor( ISQLiteContext context )
 {            
     _context = context;
 }
Example #7
0
 public SQLiteEventStore(ISQLiteContext context, IPropertyBagConverter converter)
 {
     _context   = context;
     _converter = converter;
 }
Example #8
0
 public SQLiteEventStore(ISQLiteContext context) : this(context, new PropertyBagConverter())
 {
 }
Example #9
0
 public SQLiteRecordNodeFactory( ISQLiteContext context, DataRow record )
 {
     _context = context;
     _record = record;
 }
Example #10
0
 public SQLiteTableNodeFactory( ISQLiteContext context, DataRow schema )
 {
     _context = context;
     _schema = schema;
 }
 public SQLitePathNodeProcessor(ISQLiteContext context)
 {
     _context = context;
 }
Example #12
0
 public SQLiteRootNodeFactory( ISQLiteContext context )
 {
     _sqliteContext = context;
 }
 public SQLiteRecordNodeFactory(ISQLiteContext context, DataRow record)
 {
     _context = context;
     _record  = record;
 }
Example #14
0
 public SQLiteTableNodeFactory(ISQLiteContext context, DataRow schema)
 {
     _context = context;
     _schema  = schema;
 }