laget.Db.Mongo.Statistics 1.1.5

Prefix Reserved
Suggested Alternatives

laget.Db.Mongo

Additional Details

Code merged into laget.Db.Mongo under the same namespace as previous for an easy transition.

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package laget.Db.Mongo.Statistics --version 1.1.5
                    
NuGet\Install-Package laget.Db.Mongo.Statistics -Version 1.1.5
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="laget.Db.Mongo.Statistics" Version="1.1.5" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="laget.Db.Mongo.Statistics" Version="1.1.5" />
                    
Directory.Packages.props
<PackageReference Include="laget.Db.Mongo.Statistics" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add laget.Db.Mongo.Statistics --version 1.1.5
                    
#r "nuget: laget.Db.Mongo.Statistics, 1.1.5"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package laget.Db.Mongo.Statistics@1.1.5
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=laget.Db.Mongo.Statistics&version=1.1.5
                    
Install as a Cake Addin
#tool nuget:?package=laget.Db.Mongo.Statistics&version=1.1.5
                    
Install as a Cake Tool

laget.Db.Mongo.Statistics

A statistics extension of our generic implementation of MongoDB, a cross-platform document-oriented database program. Classified as a NoSQL database program, MongoDB uses JSON-like documents with optional schemas...

Nuget Nuget

Usage

Counter

Document
[BsonCollection("statistics.counter")]
public class CounterDocument : Counter
{
    [BsonElement("customId")]
    public int CustomId { get; set; }
    [BsonElement("category")]
    public string Category { get; set; }
}
Service
public class CounterService
{
    readonly CounterRepository<CounterDocument> _repository;

    public CounterService(CounterRepository<CounterDocument> repository)
    {
        _repository = repository;
    }


    public CounterDocument Get(int customId)
    {
        var filter = Builders<CounterDocument>.Filter.Eq(x => x.CustomId, customId);

        return _repository.Get(filter);
    }

    public IEnumerable<CounterDocument> List(string category)
    {
        var filter = Builders<CounterDocument>.Filter.Eq(x => x.Category, category);

        return _repository.Find(filter);
    }

    public IEnumerable<CounterDocument> List(string customId)
    {
        var builder = Builders<CounterDocument>.Filter;

        var filter = builder.In(x => x.CustomId, customId) &
                     builder.Gte(x => x.Date, new DateTime(DateTime.Now.AddYears(-4).Year, 01, 01).Date);

        return _repository.Find(filter);
    }

    public void Increase(CounterDocument entry)
    {
        var builder = Builders<CounterDocument>.Filter;

        var filter = builder.Eq(x => x.CustomId, entry.CustomId) &
                     builder.Eq(x => x.Date, entry.Date);

        if (_repository.Exists(filter))
            _repository.Increase(filter);
        else
            _repository.Insert(entry);
    }

    public void Increase(int customId)
    {
        var entry = new CounterDocument { CustomId = customId };

        var builder = Builders<CounterDocument>.Filter;

        var filter = builder.Eq(x => x.CustomAttribute, entry.CustomAttribute) &
                     builder.Eq(x => x.Date, entry.Date);

        if (_repository.Exists(filter))
            _repository.Increase(filter);
        else
            _repository.Insert(entry);
    }
}

Object

Document

TODO

Service

TODO

Switch

Document
[BsonCollection("statistics.switches")]
public class SwitchDocument : Switch
{
    [BsonElement("customAttribute")]
    public string CustomAttribute { get;  set; }
}
Service
public class SwitchService<T>
{
    readonly SwitchRepository<SwitchDocument> _repository;

    public SwitchService(SwitchRepository<SwitchDocument> repository)
    {
        _repository = repository;
    }


    public CounterDocument Get(int customId)
    {
        var filter = Builders<SwitchDocument>.Filter.Eq(x => x.CustomId, customId);

        return _repository.Get(filter);
    }

    public IEnumerable<StateDocument> List(int customId)
    {
        var builder = Builders<StateDocument>.Filter;

        var filter = builder.Eq(x => x.CustomId, customId) &
                        builder.Eq(x => x.Name, typeof(T).Name);

        return _repository.Find(filter);
    }

    public void Set(StateDocument entry)
    {
        var builder = Builders<StateDocument>.Filter;

        var filter = builder.Eq(x => x.CustomId, entry.CampId) &
                        builder.Eq(x => x.Name, typeof(T).Name) &
                        builder.Eq(x => x.DateTime, entry.DateTime);

        _repository.Upsert(filter, entry);
    }

    public void Set(int customId, bool value)
    {
        var entry = new StateDocument { CustomId = customId, Name = typeof(T).Name, On = value };

        var builder = Builders<StateDocument>.Filter;

        var filter = builder.Eq(x => x.CustomId, entry.CustomId) &
                        builder.Eq(x => x.Name, typeof(T).Name) &
                        builder.Eq(x => x.DateTime, entry.DateTime);

        _repository.Upsert(filter, entry);
    }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated