예제 #1
0
 public QueryDocumentPath(string database, string collection, string query, string field, long index,
                          DataDocumentType type)
     : base(database, collection, query, field)
 {
     Index = index;
     Type  = type;
 }
예제 #2
0
 public DataDocumentPath(string database, string collection, long index, DataDocumentType type) : base(database, collection)
 {
     Index = index;
     Type  = type;
 }