WindnTrees.Core 1.1.12

dotnet add package WindnTrees.Core --version 1.1.12
                    
NuGet\Install-Package WindnTrees.Core -Version 1.1.12
                    
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="WindnTrees.Core" Version="1.1.12" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="WindnTrees.Core" Version="1.1.12" />
                    
Directory.Packages.props
<PackageReference Include="WindnTrees.Core" />
                    
Project file
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 WindnTrees.Core --version 1.1.12
                    
#r "nuget: WindnTrees.Core, 1.1.12"
                    
#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 WindnTrees.Core@1.1.12
                    
#: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=WindnTrees.Core&version=1.1.12
                    
Install as a Cake Addin
#tool nuget:?package=WindnTrees.Core&version=1.1.12
                    
Install as a Cake Tool

CRUD2CRUD (Facade Anti-Facade (Sub-System Independent) Interface Controller System)

WindnTrees.Abstraction extends .NET native controller and provide BasicController, ContentController, CRUDController, CRUDLController and MultipartFormController that are required when writing a WindnTrees application.

Learn CRUD, CRUD2CRUD (CRUDS) programming in WindnTrees JavaScript, ASP .NET and ASP .NET Core. Develop applications with minimal effort using client and server side CRUD controllers and views.

Benefits:

  1. MVVM
  2. CRUD2CRUD Controllers
  3. CRUD Repositories
  4. Neat Views and Scripting
  5. Professional Practice, and
  6. Simple Codebase

Support Websites & Resources:

https://www.invincibletec.com
https://github.com/shamszia/windntrees
https://github.com/shamszia/windntrees.nuget.support
https://github.com/shamszia/windntrees.support
https://github.com/shamszia/windntrees.websites
https://www.invincibletec.com/tutorial/detail/crudview-bootstrap-admin-template-website
https://www.invincibletec.com/tutorial/detail/getting-started-with-windntrees
https://www.invincibletec.com/softwares/windntrees/windntrees131/index.html (API)

Code Example:

Following is a client-side HTML Javascript CRUDView controller example.

var crudView = new CRUDView({  
           'uri': '/color',  
           'observer': new CRUDObserver({ 'contentType': new Color({}), 'messages': intialize(new MessageRepository()) })  
});  

Following is a server-side CRUDLController example, AntiforgeryFormController extends CRUDLController.

public class ColorController : AntiforgeryFormController<Color>  
{  
             protected override DbContext GetDBContext()  
             {  
                          return new LocalAppContext();  
             }  
             protected override CRUDLMRepository<Color> GetRepository()  
             {  
                          return new ColorRepository((LocalAppContext)GetDBContext());  
             }  
}  

CRUDView and CRUDLController perform data (Color) communication with their own automated, integrated processing tasks.

CRUDView binds HTML view through Knockoutjs bindings.
CRUDLController integrate repositories for persistence and provide a mechanism to map between controller requests and repository methods without extending interface.

Typically above lines of code complete interfacing and data communication requirements with built-in CRUDLM intent communication. Increasing productivity, a typical CRUD2CRUD programmer can do 8 to 15 data controllers interfaced and ready. General lists (CRUDSLists) may be finished in a day time.

CRUDLMRepository based on EntityFramwork repositories centralize conditional and sorting logic reducing code.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  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. 
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
1.1.12 131 5/7/2026
1.1.11 381 11/24/2023
1.1.10 273 11/5/2023
1.1.9 241 11/5/2023
1.1.8 643 6/17/2022
1.1.7 613 6/10/2022
1.1.6 682 1/10/2021
1.1.5 588 1/6/2021
1.1.4 608 1/4/2021
1.1.3 645 11/29/2020
1.1.2 613 11/26/2020
1.1.1 773 9/21/2020
1.1.0 702 8/26/2020
1.0.9 743 8/16/2020
1.0.8 723 8/5/2020
1.0.7 962 9/10/2019
1.0.6 918 9/10/2019
1.0.5 933 5/6/2019
1.0.4 1,049 12/11/2018
1.0.3 1,033 12/10/2018
Loading failed

Adds CRUDMethod support between controller actions and repository methods using "W-Target/__target" json request header attribute.