TK.MongoDB.GridFS.Repository 2.1.1

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.1.1
NuGet\Install-Package TK.MongoDB.GridFS.Repository -Version 2.1.1
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.1.1" />
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.1.1
#r "nuget: TK.MongoDB.GridFS.Repository, 2.1.1"
#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.1.1

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

TK.MongoDB.GridFS.Repository

Repository pattern implementation of MongoDB GridFS in .NET Framework

Usage

Settings
  1. Default ConnectionStringSettingName is set to "MongoDocConnection", but you can configure this by calling a static method as below:

    Settings.ConnectionStringSettingName = "MongoDocConnection";
    
  2. Default behavior is to always validate file name before inserting against the regex ^[\w\-. ]+$, but this can be changed by setting the following fields:

    Settings.ValidateFileName = false;
    Settings.FileNameRegex = new Regex(@"^[\w\-. ]+$", RegexOptions.IgnoreCase);
    
  3. Default behavior is to always check for file size before inserting with a maximum file size of 5 MB, but this can be changed by setting the following fields:

    Settings.ValidateFileSize = false;
    Settings.MaximumFileSizeInMBs = 5;
    
  4. You can configure chunk size for each bucket by using the method below, default setting will create a bucket with chunk size of 2 MB.

    Settings.Configure<Document>(2);
    
Models

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

public class Image : BaseFile
{
    public bool isDisplay { get; set; }
}
Repository methods
  1. 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}");
    }
    
  2. Get (by Filename)

    IEnumerable<Image> files = imgRepository.Get("Omega1.png");
    
  3. Get (by Lamda Expression)

    IEnumerable<Image> files = imgRepository.Get(x => x.Filename.Contains("Omega") && x.UploadDateTime < DateTime.UtcNow.AddDays(-1));
    
  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,195 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

Various improvements