TK.MongoDB.GridFS.Repository 2.0.4

There is a newer version of this package available.
See the version list below for details.
dotnet add package TK.MongoDB.GridFS.Repository --version 2.0.4
NuGet\Install-Package TK.MongoDB.GridFS.Repository -Version 2.0.4
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="TK.MongoDB.GridFS.Repository" Version="2.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TK.MongoDB.GridFS.Repository --version 2.0.4
#r "nuget: TK.MongoDB.GridFS.Repository, 2.0.4"
#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.
// Install TK.MongoDB.GridFS.Repository as a Cake Addin
#addin nuget:?package=TK.MongoDB.GridFS.Repository&version=2.0.4

// Install TK.MongoDB.GridFS.Repository as a Cake Tool
#tool nuget:?package=TK.MongoDB.GridFS.Repository&version=2.0.4

TK.MongoDB.GridFS.Repository

Repository pattern implementation of MongoDB GridFS in .NET Framework

Usage

Settings
  1. Default BucketChunkSizeBytes is set to 2097152 bytes or 2 MiB, but you can configure this by calling a static method as below:

    Settings.Configure(2097152);
    
  2. Default ConnectionStringSettingName is set to "MongoDocConnection", but you can configure this by calling a static method as below:

    Settings.Configure(connectionStringSettingName: "MongoDocConnection");
    
  3. You can also set both of the settings as below:

    Settings.Configure(2097152, "MongoDocConnection");
    
Models

Create a document model by inheriting abstract class BaseFile​ of type ObjectId to use in repository. The name of this model will be used as bucket name in MongoDB.

public class Image : BaseFile<ObjectId>
{
    public bool isDisplay { get; set; }
}
Repository methods
  1. Get (by Lamda Expression)

    IEnumerable<Image> files = imgRepository.Get(x => x.Filename.Contains("Omega") && x.UploadDateTime < DateTime.UtcNow.AddDays(-1));
    
  2. Get (by Id)

    try
    {
        Image file = imgRepository.Get(new ObjectId("5e36b5a698d2c14fe8b0ecbe"));
        Console.WriteLine($"Output:\n{file.Filename}");
    }
    catch (FileNotFoundException ex)
    {
        Console.WriteLine($"Output:\n{ex.Message}");
    }
    
  3. Get (by Filename)

    IEnumerable<Image> files = imgRepository.Get("Omega1.png");
    
  4. Insert

    byte[] fileContent = File.ReadAllBytes("../../Files/Omega.png");
    
    Image img = new Image()
    {
        Filename = "Omega.png",
        Content = fileContent,
        isDisplay = false
    };
    
    string id = imgRepository.Insert(img);
    
  5. Rename

    imgRepository.Rename(new ObjectId("5e37cdcf98d2c12ba0231fbb"), "Omega-new.png");
    
  6. Delete

    try
    {
        imgRepository.Delete(new ObjectId("5e36b5a698d2c14fe8b0ecbe"));
    }
    catch (FileNotFoundException ex)
    {
        Console.WriteLine($"Output:\n{ex.Message}");
    }
    
Tests

Refer to TK.MongoDB.GridFS.Test project for all Unit Tests.

Product Compatible and additional computed target framework versions.
.NET Framework net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 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
2.1.7 1,193 10/28/2022
2.1.6 690 1/17/2022
2.1.5 883 8/3/2021
2.1.5-rc1 238 8/2/2021
2.1.4 466 4/12/2021
2.1.3 1,188 9/1/2020
2.1.2 543 8/19/2020
2.1.1 444 8/18/2020
2.0.6 1,061 2/20/2020
2.0.5 506 2/6/2020
2.0.4 491 2/6/2020
2.0.3 473 2/3/2020
2.0.2 469 2/2/2020

Improvements and bug fixes