Concrete implementation of the base document found in TeqBench.System.Data.NoSql.Models for MongoDB.
- General Tooling
- Configurations
- Coding Standards
- Solutions
- Projects
- Building
- Package & Deployment
- Versioning
dotnet add package TeqBench.System.Data.NoSql.MongoDB.Models
Note
For complete usage, see TradingToolbox.Trading.Modeler.Data.NoSql.MongoDB.Models
using TeqBench.System.Data.NoSql.MongoDB.Models;
namespace TradingToolbox.Trading.Modeler.Data.NoSql.MongoDB.Models
{
/// <summary>
/// Position model document implementation.
/// </summary>
[BsonCollection("position-models")]
public class PositionModelDocument : Document
{
// NOTE: Use the BsonCollection attribute to define the name of the collection and the class
// inherits the Document class for the underlying behaviors.
}