MongoDatabase 클래스

    • 메서드 세부 정보

      • getName

        public String getName()
        데이터베이스의 이름을 가져옵니다.
        반환합니다:
        데이터베이스 이름
      • getCollection

        public MongoCollection<문서> getCollection(string collectionName)
        collection을 가져옵니다.
        매개변수:
        collectionName - 반환할 collection의 이름
        반환합니다:
        collection
      • getCollection

        public <DocumentT> MongoCollection<DocumentT> getCollection(string collectionName,
                                                                    클래스<DocumentT> documentClass)
        특정 기본 문서 클래스가 있는 컬렉션을 가져옵니다.
        유형 매개변수:
        DocumentT - Document 대신 사용할 클래스 유형입니다.
        매개변수:
        collectionName - 반환할 collection의 이름
        documentClass - 데이터베이스에서 반환된 모든 문서를 캐스팅할 기본 클래스입니다.
        반환합니다:
        collection