Exemplo n.º 1
0
 public SqlEdgeStore(DbConnection dbConnection, DbProvider <ConcreteCommand> provider, IEdgeStoreRawSqlProvider edgeStoreRawSqlProvider)
     : base(dbConnection, "Edge")
 {
     this.provider  = provider;
     rawSqlProvider = edgeStoreRawSqlProvider;
 }
Exemplo n.º 2
0
 public SqlGraph(DbProvider <ConcreteCommand> p,
                 Func <IVertex, IEnumerable <IndexedString> > indexConstructionLogic = null)
     : base(p.VertexStore, p.EdgeStore, indexConstructionLogic)
 {
     vertexStore = p.VertexStore;
 }