コード例 #1
0
ファイル: IndexBuilder.cs プロジェクト: mdm88/ArangoDriver
        internal IndexBuilder(RequestFactory requestFactory, ACollection <T> collection, AIndexType type)
        {
            _requestFactory = requestFactory;
            _collection     = collection;

            _create = new IndexCreateRequest()
            {
                Type = type.ToString().ToLower()
            };
        }
コード例 #2
0
ファイル: DocumentDelete.cs プロジェクト: mdm88/ArangoDriver
 internal DocumentDelete(RequestFactory requestFactory, ACollection <T> collection, IJsonSerializer jsonSerializer)
 {
     _requestFactory = requestFactory;
     _collection     = collection;
     _jsonSerializer = jsonSerializer;
 }
コード例 #3
0
ファイル: AIndex.cs プロジェクト: mdm88/ArangoDriver
 internal AIndex(RequestFactory requestFactory, ACollection <T> collection)
 {
     _requestFactory = requestFactory;
     _collection     = collection;
 }
コード例 #4
0
ファイル: DocumentUpdate.cs プロジェクト: mdm88/ArangoDriver
 internal DocumentUpdate(RequestFactory requestFactory, ACollection <T> collection)
 {
     _requestFactory = requestFactory;
     _collection     = collection;
 }