Skip to content

teqbench/teqbench.system.data.nosql.mongodb.models

Repository files navigation

System MongoDB Models

Build Status Badge Build Number Badge Coverage

Overview

Concrete implementation of the base document found in TeqBench.System.Data.NoSql.Models for MongoDB.

Contents

Developer Environment Setup

General

.NET

Usage

Add NuGet Package To Project

dotnet add package TeqBench.System.Data.NoSql.MongoDB.Models

Update Source Code

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.
}

Licensing

License