Tendril.InMemory
0.1.0
See the version list below for details.
dotnet add package Tendril.InMemory --version 0.1.0
NuGet\Install-Package Tendril.InMemory -Version 0.1.0
<PackageReference Include="Tendril.InMemory" Version="0.1.0" />
paket add Tendril.InMemory --version 0.1.0
#r "nuget: Tendril.InMemory, 0.1.0"
// Install Tendril.InMemory as a Cake Addin #addin nuget:?package=Tendril.InMemory&version=0.1.0 // Install Tendril.InMemory as a Cake Tool #tool nuget:?package=Tendril.InMemory&version=0.1.0
Tendril
About
Tendril is a Normalized Data Access Layer (DAL) Package. This package provides a common CRUD interface for underlying collections of data. In addition to this functionality, Tendril also provides a common query language for decoupling consumption of data from the underlying persistence layer. This package is intended to be used in conjunction with the corresponding database type packages. These child packages provide functionalities for registering your datasources with Tendril. Some of these database specific packages include: Tendril.EFCore, Tendril.InMemory.
Examples
For all examples below, we will be using the following entity definition and dbcontext, note this example is also dependent on Tendril.EFCore for bootstrapping the collection to the DataManager.
public class Student {
public int Id { get; set; }
public string Name { get; set; }
}
public class StudentDbContext : DbContext {
public DbSet<Student> Students { get; set; }
}
var findByFilterService = new LinqFindByFilterService<Student>()
.WithFilterDefinition( "Id", FilterOperator.EqualTo, v => s => s.Id == ( ( int ) v.First() ) )
.WithFilterDefinition( "Name", FilterOperator.StartsWith, v => s => s.Name.StartsWith( v.Single() as string ) )
.WithFilterDefinition( "Name", FilterOperator.EqualTo, v => s => s.Name == ( v.Single() as string ) )
.WithFilterDefinition( "Name", FilterOperator.EndsWith, v => s => s.Name.EndsWith( v.Single() as string ) );
var dataManager = new DataManager()
.WithDbContext( () => new StudentDbContext( new DbContextOptions() ) )
.WithDbSet(
db => db.Students,
new FilterChipValidatorService()
.HasFilterType<int>( "Id", false, 1, 1, FilterOperator.EqualTo )
.HasFilterType<string>(
"Name", false, 1, 1,
FilterOperator.StartsWith, FilterOperator.EqualTo, FilterOperator.EndsWith
)
.ValidateFilters,
async ( dbSet, filter, page, pageSize ) =>
await findByFilterService.FindByFilter( dbSet, filter, page, pageSize ).ToListAsync()
);
Create a new student with the name "John Doe"
var student = await dataManager.Create( new Student { Name = "John Doe" } );
Create multiple students in a batch
var students = new List<Student> {
new Student { Name = "John Doe" },
new Student { Name = "Jane Doe" }
};
await dataManager.CreateRange( students, 2 );
Insert a student and then change their name
var student = await dataManager.Create( new Student { Name = "John Doe" } );
student.Name = "John Lee Doe";
await dataManager.Update( student );
Delete a student from the collection
var student = await dataManager.Create( new Student { Name = "John Doe" } );
await dataManager.Delete( student );
Find a student who either has an ID equal to 5, or a name that starts with John and ends with Doe
var filters = new OrFilterChip(
new FilterChip( "Id", FilterOperator.EqualTo, 5 ),
new AndFilterChip(
new FilterChip( "Name", FilterOperator.StartsWith, "John" ),
new FilterChip( "Name", FilterOperator.EndsWith, "Doe" )
)
);
var students = await DataManager.FindByFilter<Student>( filters );
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
- Tendril (>= 0.2.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.