Inherits: IdentifiableMongoDbPersistence<T, K>
Description
The MongoDbPersistence class allows you to create persistence components that store data in MongoDB databases using the official MongoDB driver.
Important points
- In basic scenarios child classes shall only override GetPageByFilterAsync, GetListByFilter or DeleteByFilter operations with specific filter functions.
- All other operations can be used out of the box.
- In complex scenarios child classes can implement additional operations by accessing the this._collection property.
Configuration parameters
- collection: (optional) MongoDB collection name
connection(s):
- discovery_key: (optional) key to retrieve the connection from IDiscovery
- host: host name or IP address
- port: port number (default: 27017)
- uri: resource URI or connection string with all parameters in it
credential(s):
- store_key: (optional) key to retrieve the credentials from ICredentialStore
- username: (optional) username
- password: (optional) user’s password
options:
- max_pool_size: (optional) maximum connection pool size (default: 2)
- keep_alive: (optional) enable connection keep alive (default: true)
- connect_timeout: (optional) connection timeout in milliseconds (default: 5 sec)
- auto_reconnect: (optional) enable auto reconnection (default: true)
- max_page_size: (optional) maximum page size (default: 100)
- debug: (optional) enable debug output (default: false).
References
- *:logger:*:*:1.0 - (optional) ILogger components to pass log messages
- *:discovery:*:*:1.0 - (optional) IDiscovery services
- *:credential-store:*:*:1.0 - (optional) credential stores to resolve credentials
Constructors
Creates a new instance of the persistence component.
public
PartitionMongoDbPersistence(string collectionName, string partitionKey)
- collectionName: string - (optional) collection name.
- partitionKey: string - partition key
Fields
Instance methods
Configure
Configures component by passing configuration parameters.
public
void Configure(ConfigParams config)
- config: ConfigParams - configuration parameters to be set.
DeleteByIdAsync
Deletes a data item by it’s unique id.
public override
Task<T> DeleteByIdAsync(IContext context, K id)
- context: IContext - (optional) a context to trace execution through a call chain.
- id: K - id of the item to be deleted
GetOneByFilterAsync
Gets one first data item by filter.
public
Task<T> GetOneByFilterAsync(IContext context, FilterDefinition<T> filterDefinition)
- context: IContext - (optional) a context to trace execution through a call chain.
- filterDefinition: FilterDefinition<T> - (optional) filter for JSON object
- returns: Task<T> - data item.
Gets one first data item by filter.
protected
Task<object> GetOneByFilterAsync(IContext context, FilterDefinition<T> filterDefinition, ProjectionParams projection)
- context: IContext - (optional) a context to trace execution through a call chain.
- filterDefinition: FilterDefinition<T> - (optional) filter for JSON object.
- projection: ProjectionParams - (optional) projection parameters.
- returns: Task<object> - data item.
ModifyByIdAsync
Modifies a data item by it’s unique id.
public override
Task<T> ModifyByIdAsync(IContext context, K id, UpdateDefinition<T> updateDefinition)
- context: IContext - (optional) a context to trace execution through a call chain.
- id: K - (optional) filter function used to filter items.
- updateDefinition: UpdateDefinition<T> - (optional) JSON object to update
- returns: Task<T> - updated item.
SetAsync
Sets a data item. If the data item exists, it updates it. Otherwise, it create a new data item.
public override
Task<T> SetAsync(IContext context, T item)
- context: IContext - (optional) a context to trace execution through a call chain.
- item: T - item to be set.
- returns: Task<T> - updated item.
UpdateAsync
Updates a data item.
public override
Task<T> UpdateAsync(IContext context, T item)
- context: IContext - (optional) a context to trace execution through a call chain.
- item: T - item to be updated.
- returns: Task<T> - updated item.
Examples
class MyMongoDbPersistence: PartitionMongoDbPersistence<MyData, string>
{
public MyMongoDbPersistence(): base("mydata") { }
private FilterDefinition<MyData> ComposeFilter(FilterParams filter)
{
filterParams = filterParams ?? new FilterParams();
var builder = Builders<BeaconV1>.Filter;
var filter = builder.Empty;
String name = filter.getAsNullableString("name");
if (name != null)
filter &= builder.Eq(b => b.Name, name);
return filter;
}
public GetPageByFilter(IContext context, FilterParams filter, PagingParams paging)
{
base.GetPageByFilter(context, this.ComposeFilter(filter), paging, null, null);
}
}
var persistence = new MyMongoDbPersistence();
persistence.Configure(ConfigParams.FromTuples(
"host", "localhost",
"port", 27017 )
);
persitence.Open("123");
persistence.Create("123", new MyData("1", "ABC"));
var mydata = persistence.GetPageByFilter(
"123",
FilterParams.FromTuples("name", "ABC"));
Console.Out.WriteLine(mydata.Data); // Result: { id: "1", name: "ABC" }
persistence.DeleteById("123", "1");
...