OracleCollection<TKey, TRecord>(string, string, OracleCollectionOptions?)
Instantiates a new instance of OracleCollection class using the provided connection string and collection name.
Declaration
// C#
OracleCollection<TKey, TRecord>(string connectionString, string collectionName, OracleCollectionOptions? options = default) Parameters
-
stringThe connection string which can be used to obtain database connections.
-
collectionNameName of the collection
-
optionsOptional vector collection configuration options.
Exceptions
ArgumentNullException: The provideddataSourceornameparameter is null.ArgumentException:- The provided
collectionNameparameter is null, an empty string or contains white spaces only. - The provided
collectionNameis not compliant with Oracle name standard. - The definition provided in
OracleCollectionOptions.Definitioncannot be mapped to an Oracle type based on the default/custom type mapping.
- The provided