コード例 #1
0
ファイル: Index.cs プロジェクト: sonyarouje/Neo4jD
 public static Index Create(string indexName)
 {
     IndexRepo indexRepoTmp = new IndexRepo();
     return indexRepoTmp.Create(indexName);
 }
コード例 #2
0
ファイル: Index.cs プロジェクト: sonyarouje/Neo4jD
 //public static Index GetAutoIndex()
 //{
 //    IndexRepo indexRepoTmp = new IndexRepo();
 //    return indexRepoTmp.GetAutoIndex();
 //}
 public static Index Get(string indexName)
 {
     IndexRepo indexRepoTmp = new IndexRepo();
     return indexRepoTmp.GetIndex(indexName);
 }
コード例 #3
0
ファイル: Index.cs プロジェクト: sonyarouje/Neo4jD
 internal Index()
 {
     this._indexRepo = new IndexRepo();
 }