Ejemplo n.º 1
0
		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;
        }
Ejemplo n.º 2
0
 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;
 }
Ejemplo n.º 3
0
 public SQLiteRootNodeFactory(ISQLiteContext context)
 {
     _sqliteContext = context;
 }
Ejemplo n.º 4
0
 public SQLiteEventStore(ISQLiteContext context, IPropertyBagConverter converter)
 {
     _context = context;
     _converter = converter;
 }
Ejemplo n.º 5
0
 public SQLiteEventStore(ISQLiteContext context) : this(context, new PropertyBagConverter())
 {
 }
Ejemplo n.º 6
0
 public SQLitePathNodeProcessor( ISQLiteContext context )
 {            
     _context = context;
 }
Ejemplo n.º 7
0
 public SQLiteEventStore(ISQLiteContext context, IPropertyBagConverter converter)
 {
     _context   = context;
     _converter = converter;
 }
Ejemplo n.º 8
0
 public SQLiteEventStore(ISQLiteContext context) : this(context, new PropertyBagConverter())
 {
 }
Ejemplo n.º 9
0
 public SQLiteRecordNodeFactory( ISQLiteContext context, DataRow record )
 {
     _context = context;
     _record = record;
 }
Ejemplo n.º 10
0
 public SQLiteTableNodeFactory( ISQLiteContext context, DataRow schema )
 {
     _context = context;
     _schema = schema;
 }
Ejemplo n.º 11
0
 public SQLitePathNodeProcessor(ISQLiteContext context)
 {
     _context = context;
 }
Ejemplo n.º 12
0
 public SQLiteRootNodeFactory( ISQLiteContext context )
 {
     _sqliteContext = context;
 }
Ejemplo n.º 13
0
 public SQLiteRecordNodeFactory(ISQLiteContext context, DataRow record)
 {
     _context = context;
     _record  = record;
 }
Ejemplo n.º 14
0
 public SQLiteTableNodeFactory(ISQLiteContext context, DataRow schema)
 {
     _context = context;
     _schema  = schema;
 }