Build a CRUD REST API with JSON Data Connectors for ADO.NET & Entity Framework
Quick Start Guide | |
---|---|
What You Will Need |
ComponentOne Data Services Edition Visual Studio 2022, .NET 8 |
Controls Referenced |
C1.AdoNet.JSON (part of Data Connectors) C1.WPF.Grid (FlexGrid) |
Tutorial Concept | How to fully connect a .NET datagrid (WPF) to a JSON data source with create, read, update, and delete functionality using REST services. |
REST (Representational State Transfer) is an architectural style that defines a set of constraints to be used for creating web services. REST API is a way of accessing web services in a simple and flexible way without having any processing. One can also perform CRUD (Create, Read, Update, Delete) operations over RESTful API Services.
In this blog, we will perform CRUD operations over RESTful API using ComponentOne JSON DataConnectors, which are part of the Data Services Edition product. The JSON DataConnectors for ADO.NET and Entity Framework Core can be used for effective data connectivity built over ADO.NET architecture. They are high-performance data providers that enable a common interface for accessing different kinds of data sources based on established data-access technologies. The steps to enable CRUD operations in a desktop .NET application are as follows:
- Create the XAML UI to Display Data
- Create the Web API Configuration
- Connect the FlexGrid to JSON Data using ADO.NET
Ready to Test it Out? Download ComponentOne Today!
Create the XAML UI to Display Data
Here, we will use the FlexGrid for WPF control to visualize our CRUD operations. The WPF FlexGrid is a datagrid control designed to showcase tabular/object model data. Add the FlexGrid in XAML so that it will be visible on the UI. Set ItemsSource of FlexGrid and bind the columns with the respective properties.
Create the Web API Configuration
To establish a connection to a JSON data source using the C1JsonConnection class. It requires a connection string to be provided as an argument.
Using a configuration file, you can also set the APIConfigFile property in ConnectionString to support CRUD operations for JSON sources. We must have a Configuration file. You need to create an XML file in the project for API configurations of the AddUpdateProduct connection string.
Connect the Flexgrid to JSON Data using ADO.NET
Next, we will connect the Flexgrid to JSON data connectors using ADO.NET to showcase the CRUD operations.
Start by creating a ViewModel class, which acts as the data source and controller for the View. Then, add a DataTable property, which should be bound to FlexGrid’s ItemsSource, and add methods to fetch the data from API using C1JsonDataAdapter with the help of the “GetProducts” connection string. Now, we can Read the data from RESTful API on FlexGrid.
Next, we will implement the Create, Update, and Delete operations. So, the changes made on the UI (Flexgrid) modify the API. Create a Sync() method in the ViewModel class to implement Create, Update, and Delete operations:
Next, we can add a button to the UI to sync all changes. This will Fetch all change(s) and notify the user about it. Then, call the Sync() method of ViewModel so that all the changes are updated to RESTful APIs.
That's it!
Now, the WPF application is ready. You can edit, add, or remove data from Flexgrid, and it will reflect to the RESTful Services after the data is synchronized, as shown in the below GIF.
For full implementation, you can download the sample.
Alternately, Using EntityFramework Core for CRUD Operations
We used the standard ADO.NET approach above. Let's see how the same functionality works using Entity Framework Core. This section will teach us to perform CRUD operations using EntityFramework Core.
First, create a ProductContext class derived from DbContext for the EntityFramework. It represents a session with the underlying database where you can perform CRUD (Create, Read, Update, Delete) operations.
Then, add a DbSet<TEntity> property, which should be bound to the FlexGrid’s ItemsSource. Override Methods of DbContext to initialize and configure Entity with the help of the “AddUpdateProduct” connection string. Now, we can read the data from RESTful API on FlexGrid and Modify RESTful API data by saving the changes on DbContext.
Next, handle the Click event of the button, which is placed in the XAML designer to sync all changes. Fetch all change(s) and notify the user about it. Then, call the SaveChangesAsync() method of DbContext so that all the changes are updated to RESTful APIs.
And that's it! Notice how much less code is necessary. For full implementation, you can download the sample.
Next, you can try the same implementation with FlexGrid for WinForms and let us know about your experience.
Ready to Test it Out? Download ComponentOne Today!