WindnTrees.ICRUDS
0.0.27
See the version list below for details.
dotnet add package WindnTrees.ICRUDS --version 0.0.27
NuGet\Install-Package WindnTrees.ICRUDS -Version 0.0.27
<PackageReference Include="WindnTrees.ICRUDS" Version="0.0.27" />
paket add WindnTrees.ICRUDS --version 0.0.27
#r "nuget: WindnTrees.ICRUDS, 0.0.27"
// Install WindnTrees.ICRUDS as a Cake Addin #addin nuget:?package=WindnTrees.ICRUDS&version=0.0.27 // Install WindnTrees.ICRUDS as a Cake Tool #tool nuget:?package=WindnTrees.ICRUDS&version=0.0.27
WCF CRUDS API: Develop cross-process and cross-platform distributed applications using WCF (Windows Communication Foundation) CRUDS API. #WCF #CRUD2CRUD #CRUD2CRUD2CRUD #CRUDS http://www.invincibletec.com/tutorial/detail/introduction-to-wcf-cruds
Benefits:
- Generalized Communication CRUD2CRUD (CRUDS)
- One interface, no need of multiple service contract interfaces.
- CRUD Repositories for data persistence.
- Extend CRUD repositories with customized functions and integrate in CRUD controllers (CRUD Services) with one IService (or IWCFService).
- Invoke remote methods from clients (ServiceClients CRUDController) by specifying server side method "target" names.
- Support for MVVM desktop application development.
- WCF CRUDS application server.
- Cross-process and cross-platform clients.
- Data communication using synchronous (IService) and asynchronous (IServiceAsync) interface channels.
- Support for event driven response handling.
- Reduced effort and cost of developing multiple service contracts. Think of CRUDL communication with CRUD repository for persistence.
- Reduced complexity and elaborated architecture (CRUDL data communication).
- Distribute applications with simple interfacing model
Version 25 onward support EmptyCRUD, EmptyCRUD2EmptyCRUD communication design pattern.
EmptyCRUD2EmptyCRUD service interface is class or type function scope design pattern without parameterized messaging to repository implementations, data communication are empty messages.
Server side is responsible for object creation, reading, updating, deletion and listing. Order your CRUDL actions with latest record, create (latest), read (latest), update (latest), delete (latest).
Example:
https://github.com/shamszia/windntrees.support/tree/master/wcfwpfcruds
Host Services:
StartService("TCP.Adapter.Product.Empty.IWCFService", typeof(WindnTrees.ICRUDS.IWCFEmptyService<Application.Models.Standard.DataAccess.Adapter.Product>), typeof(Application.WCF.Server.Adapter.Repositories.ProductAdapterEmptyRepository), null, "net.tcp", "127.0.0.1", "9092", "/adapter/product/empty", 1, false); StartService("TCP.Adapter.Product.Empty.IWCFService.Secure", typeof(WindnTrees.ICRUDS.IWCFEmptyService<Application.Models.Standard.DataAccess.Adapter.Product>), typeof(Application.WCF.Server.Adapter.Repositories.ProductAdapterEmptyRepository), null, "net.tcp", "127.0.0.1", "9093", "/secure/adapter/product/empty", 1, true);
Consume Services:
var wcfServiceController = new WCFEmptyServiceController<Product>(ConfigurationManager.AppSettings["IPAddress"], ConfigurationManager.AppSettings["TCPTLSPort"], "/secure/adapter/product/empty", "product", true, true); m_EmptyCRUDView = new EmptyCRUDView<Product>(wcfServiceController, ControllerType.WCFEmptyServiceController, new ProductViewModel());
Try appropriate combination of "http", and "net.tcp" protocol constructor arguments with hosting configurations.
You may also use service client directly with hosted service.
m_TCPWCFServiceClient = new WCFServiceClient<IDataAccess.Standard.Adapter.Models.Product>(ChannelsAndBindings<IDataAccess.Standard.Adapter.Models.Product>.GetEmptyTcpWCFChannelFactory(ChannelsAndBindings<IDataAccess.Standard.Adapter.Models.Product>.GetServiceAddress("net.tcp", "127.0.0.1", "8082", "product/wcf/empty")));
Download and install from following: https://www.nuget.org/profiles/invincible_technologies
API:
http://www.invincibletec.com/softwares/windntrees/windntrees.icruds0025/index.html
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net472 is compatible. net48 was computed. net481 was computed. |
-
- Newtonsoft.Json (>= 12.0.3)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on WindnTrees.ICRUDS:
Package | Downloads |
---|---|
WindnTrees.CRUDS.Repository
Introduces callback channel repositories. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.0.29 | 1,164 | 11/4/2022 |
0.0.28 | 429 | 6/26/2022 |
0.0.27 | 420 | 6/17/2022 |
0.0.26 | 423 | 6/14/2022 |
0.0.25 | 1,437 | 6/5/2022 |
0.0.24 | 903 | 1/27/2021 |
0.0.23 | 382 | 1/22/2021 |
0.0.22 | 382 | 1/21/2021 |
0.0.20 | 952 | 1/4/2021 |
0.0.19 | 334 | 12/30/2020 |
0.0.18 | 343 | 12/27/2020 |
0.0.17 | 349 | 12/8/2020 |
0.0.16 | 806 | 11/29/2020 |
0.0.15 | 526 | 10/31/2020 |
0.0.14 | 663 | 10/27/2020 |
0.0.13 | 892 | 9/20/2020 |
0.0.12 | 1,105 | 8/12/2020 |
0.0.11 | 401 | 8/12/2020 |
0.0.10 | 969 | 5/18/2020 |
0.0.8 | 632 | 1/17/2020 |
0.0.4 | 466 | 12/20/2019 |
0.0.2 | 502 | 12/16/2019 |
0.0.1 | 537 | 12/15/2019 |
Bug fixing and repository compliance.