Retrieve a specific numbered key and all duplicate data items from
            the database.
            
    Namespace: 
   BerkeleyDBAssembly: libdb_dotnet53 (in libdb_dotnet53.dll) Version: 5.3.28.0
 Syntax
Syntax
| C# | 
|---|
| public KeyValuePair<DatabaseEntry, MultipleDatabaseEntry> GetMultiple( uint recno ) | 
| Visual Basic (Declaration) | 
|---|
| Public Function GetMultiple ( _ recno As UInteger _ ) As KeyValuePair(Of DatabaseEntry, MultipleDatabaseEntry) | 
| Visual C++ | 
|---|
| public: KeyValuePair<DatabaseEntry^, MultipleDatabaseEntry^> GetMultiple( unsigned int recno ) | 
Parameters
- recno
- Type: System..::.UInt32
 The record number of the record to be retrieved.
Return Value
A KeyValuePair<(Of <(TKey, TValue>)>) whose Key parameter is recno and whose Value parameter is the retrieved data items. Exceptions
Exceptions
| Exception | Condition | 
|---|---|
| BerkeleyDB..::.NotFoundException | A NotFoundException is thrown if recno is not in the database. | 





