ModelWrapper 1.1.0
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package ModelWrapper --version 1.1.0
NuGet\Install-Package ModelWrapper -Version 1.1.0
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="ModelWrapper" Version="1.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ModelWrapper" Version="1.1.0" />
<PackageReference Include="ModelWrapper" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add ModelWrapper --version 1.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: ModelWrapper, 1.1.0"
#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.
#:package ModelWrapper@1.1.0
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=ModelWrapper&version=1.1.0
#tool nuget:?package=ModelWrapper&version=1.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
ModelWrapper - Current version 1.1.0
Model wrapper - Tool wich enrich the experience of data models manipulation in RestFul APIs for C# WebApi projects.
Usage
Model class:
public class PatchCustomerCommand : Wrap<Customer>, IRequest<PatchCustomerCommandResponse>
{
public PatchCustomerCommand()
{
KeyProperty(x => x.CustomerID);
SuppressProperty(x => x.RegistrationDate);
SuppressProperty(x => x.Orders);
}
}
Methods:
int categoryID = 12;
model.Project(x=>x.CategoryID = categoryID); //Sets the value into the internal object;
int categoryID = model.Project(x=>x.CategoryID); //Gets the value of the internal object;
Customer entity = model.Post(); //return a new instance of the entity.
model.Patch(entity); //Update the supplied properties on entity.
model.Put(entity); //Update all properties of the entity.
GitHub
Nuget
Package Manager
PM> Install-Package ModelWrapper -Version 1.1.0
.NET CLI
> dotnet add package ModelWrapper --version 1.1.0
Packet
> paket add ModelWrapper --version 1.1.0
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp2.1 is compatible. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETCoreApp 2.1
- Microsoft.AspNetCore.Mvc (>= 2.1.3)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on ModelWrapper:
| Package | Downloads |
|---|---|
|
BAYSOFT.Abstractions
Package Description |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 10.0.3 | 25 | 2/17/2026 |
| 10.0.2 | 99 | 2/3/2026 |
| 10.0.1 | 149 | 1/12/2026 |
| 9.0.10 | 271 | 10/27/2025 |
| 8.0.6.8 | 386 | 3/1/2025 |
| 8.0.6.7 | 230 | 2/15/2025 |
| 8.0.6.6 | 368 | 10/7/2024 |
| 8.0.6.5 | 224 | 10/6/2024 |
| 8.0.6.4 | 236 | 7/13/2024 |
| 8.0.6.3 | 221 | 7/11/2024 |
| 8.0.6.2 | 277 | 6/28/2024 |
| 8.0.6.1 | 302 | 6/23/2024 |
| 8.0.6 | 299 | 6/20/2024 |
| 8.0.3 | 293 | 6/18/2024 |
| 8.0.2 | 366 | 6/18/2024 |
| 8.0.1 | 241 | 6/11/2024 |
| 8.0.0 | 251 | 6/2/2024 |
| 7.0.0 | 244 | 6/2/2024 |
| 6.0.0 | 226 | 6/2/2024 |
| 1.1.0 | 911 | 3/22/2019 |
Loading failed
Wrap<TModel, int> removed & Project implemented