Tindi.CRUD.Library
1.0.0
dotnet add package Tindi.CRUD.Library --version 1.0.0
NuGet\Install-Package Tindi.CRUD.Library -Version 1.0.0
<PackageReference Include="Tindi.CRUD.Library" Version="1.0.0" />
paket add Tindi.CRUD.Library --version 1.0.0
#r "nuget: Tindi.CRUD.Library, 1.0.0"
// Install Tindi.CRUD.Library as a Cake Addin #addin nuget:?package=Tindi.CRUD.Library&version=1.0.0 // Install Tindi.CRUD.Library as a Cake Tool #tool nuget:?package=Tindi.CRUD.Library&version=1.0.0
Your class mapping your collection should have public Guid Id property or field
class Person { public Guid Id; public string FirstName { get; set; } public string LastName { get; set; } }
Sample use:
using Microsoft.Extensions.DependencyInjection; using Tindi.CRUD.Library;
ServiceProvider serviceProvider;
serviceProvider = new ServiceCollection() .ConfigureTindiCRUDLibraryMongo() .BuildServiceProvider();
var crud = serviceProvider.GetRequiredService<ICRUD>();
crud.Repository.Connect("mongodb://yourserver.com:27017/?readPreference=primary&appname=MongoDB%20Compass&directConnection=true&ssl=false", "Your database name");
crud.CreateRecord("CollectionName", YourObjectInstance); var List = crud.ReadAll<YourClass>("YourRelatedToClassCollectionNameInDB"); var pers = crud.ReadOneById<YourClass>("YourCollection", new Guid("6afa7d7f-dc10-4176-bc50-fd02eb8d1a6a")); crud.UpdateRecord("YourCollection", pers.Id, pers); crud.DeleteRecord<Person>("Users", Daga.Id);
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. 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. |
-
net6.0
- Microsoft.Extensions.DependencyInjection (>= 6.0.0)
- Microsoft.Extensions.Logging (>= 6.0.0)
- MongoDB.Driver (>= 2.14.1)
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 |
---|---|---|
1.0.0 | 263 | 1/2/2022 |
Initial version with preliminary MongoDB and "FakeDB" implementation