Sweaj.Patterns
1.2.1
See the version list below for details.
dotnet add package Sweaj.Patterns --version 1.2.1
NuGet\Install-Package Sweaj.Patterns -Version 1.2.1
<PackageReference Include="Sweaj.Patterns" Version="1.2.1" />
paket add Sweaj.Patterns --version 1.2.1
#r "nuget: Sweaj.Patterns, 1.2.1"
// Install Sweaj.Patterns as a Cake Addin #addin nuget:?package=Sweaj.Patterns&version=1.2.1 // Install Sweaj.Patterns as a Cake Tool #tool nuget:?package=Sweaj.Patterns&version=1.2.1
Sweaj.Patterns
A library intended for easily adapting familiar & flexible abstractions of many patterns I use today. Keep in mind that this is opinionated, and what drives me is flexible, but minimally functional. The library uses common contracts across multiple patterns which guides the development of a cohesive application, it makes it more rigid to follow specific patterns if you choose to, which makes diagnostics more simple, and architecture more guided.
Advisory
This library is under heavy development, I wouldn't advise using this library yet as most of the updates contain breaking changes. I am currently updating this library as I continue to work with these patterns and find a good balance of flexibility and an opinionated approach to its contracts and implementations.
Library Features
- AI
- Attributes
- Cache
- Converters
- Data
- DDD (Domain Driven Design)
- Entities, AuditableEntities
- Repositories
- UnitOfWork
- ValueObjects
- Values (ValueStore & DataStore)
- Dates
- Exceptions
- Guards
- Logging
- Mapping
- NullObject
- Options
- Reflection
- Rest (Request/Response)
- Scientific
- Serialization
WIKI
See the wiki for examples of each! Below are the best uses of library examples
IValueProvider<TValue>
A mechanism for providing a valid value of something.
This is used thoroughly in the patterns library as being the payload for a request, the response object for responses, an entity in a database, or File contents, it represents the underlying value of an object.
Conversions
Conversions are simple, you convert a source
value to a target
value.
The IConverter
interface represents a contract for converting an object from one type to another synchronously, while the IAsyncConverter
interface represents a contract for converting an object from one type to another asynchronously, optionally supporting cancellation.
string str = "7"
int convertedValue = converter.Convert(str);
// convertedValue = 7
Request / Response
The ApiResponse
encapsulates the minimum ApiResponse, that
public class ApiResponse { ... }
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. |
-
net8.0
- Ardalis.GuardClauses (>= 4.6.0)
- JetBrains.Annotations (>= 2024.2.0)
- Microsoft.CodeAnalysis.CSharp (>= 4.10.0)
- Microsoft.Extensions.Caching.Abstractions (>= 8.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.1)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Sweaj.Patterns:
Package | Downloads |
---|---|
TaskRipper.Core
A simple, easy-to-use lightweight, no-dependency library for executing an `Actionable<TRequest, TResult>` delegate N times. The library provides a way to balance the number of iterations requested by delegating a specific amount of iterations per thread on your machine supporting cancellation tokens per iteration. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
1.2.5 | 65 | 10/21/2024 | |
1.2.4 | 116 | 10/3/2024 | |
1.2.3 | 83 | 10/3/2024 | |
1.2.2 | 77 | 10/3/2024 | |
1.2.1 | 80 | 10/3/2024 | |
1.2.0 | 129 | 8/13/2024 | |
1.1.8 | 196 | 11/30/2023 | |
1.1.8-beta | 113 | 11/30/2023 | |
1.1.7-beta | 113 | 11/30/2023 | |
1.1.6-beta | 115 | 11/30/2023 | |
1.1.5-beta | 124 | 11/29/2023 | |
1.1.4-beta | 98 | 11/29/2023 | |
1.1.3-beta | 126 | 11/29/2023 | |
1.1.2-beta | 112 | 11/28/2023 | |
1.1.1-beta | 115 | 11/28/2023 | |
1.1.0-beta | 112 | 11/27/2023 | |
1.0.8-beta | 149 | 10/21/2023 | |
1.0.7-beta | 119 | 9/29/2023 | |
1.0.6-beta | 176 | 7/26/2023 | |
1.0.5 | 215 | 7/18/2023 | |
1.0.4 | 230 | 6/13/2023 | |
1.0.3 | 318 | 2/24/2023 | |
1.0.2 | 293 | 2/24/2023 | |
1.0.0 | 472 | 1/27/2023 | |
1.0.0-1.0.90 | 123 | 2/16/2023 | |
1.0.0-1.0.89 | 126 | 2/16/2023 | |
1.0.0-1.0.0 | 126 | 2/24/2023 |
Update ApiResponse