 | MyEntityContext Constructor (String, NullableBoolean, String, IEnumerableString, String) |
Home | imbSCI | imbACE | imbNLP | imbWEM | imbWBI [This is preliminary documentation and is subject to change.]
Initialize a new entity context using the specified Brightstar connection string
Namespace:
imbWEM.Core
Assembly:
imbWEM.Core (in imbWEM.Core.dll) Version: 0.1.0.0 (0.1.0.0)
Syntaxpublic MyEntityContext(
string connectionString,
Nullable<bool> enableOptimisticLocking = null,
string updateGraphUri = null,
IEnumerable<string> datasetGraphUris = null,
string versionGraphUri = null
)
Parameters
- connectionString
- Type: SystemString
The connection to be used to connect to an existing BrightstarDB store - enableOptimisticLocking (Optional)
- Type: SystemNullableBoolean
OPTIONAL: If set to true optmistic locking will be applied to all entity updates - updateGraphUri (Optional)
- Type: SystemString
OPTIONAL: The URI identifier of the graph to be updated with any new triples created by operations on the store. If
not defined, the default graph in the store will be updated. - datasetGraphUris (Optional)
- Type: System.Collections.GenericIEnumerableString
OPTIONAL: The URI identifiers of the graphs that will be queried to retrieve entities and their properties.
If not defined, all graphs in the store will be queried. - versionGraphUri (Optional)
- Type: SystemString
OPTIONAL: The URI identifier of the graph that contains version number statements for entities.
If not defined, the updateGraphUri will be used.
See Also