Skip to content

documentation(960337):Resolved issue #826

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: hotfix/hotfix-v29.2.4
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions ej2-angular-toc.html
Original file line number Diff line number Diff line change
Expand Up @@ -1397,9 +1397,12 @@
</li>
<li>Connecting to Database
<ul>
<li><a href="/ej2-angular/grid/connecting-to-database/sqlite-server">SQLite Server</a></li>
<li><a href="/ej2-angular/grid/connecting-to-database/microsoft-sql-server">Microsoft SQL Server</a></li>
<li><a href="/ej2-angular/grid/connecting-to-database/dapper">Dapper</a></li>
<li><a href="/ej2-angular/grid/connecting-to-database/mysql-server">MySQL Server</a></li>
<li><a href="/ej2-angular/grid/connecting-to-database/entityframework">Entity Framework</a></li>
<li><a href="/ej2-angular/grid/connecting-to-database/postgresql-server">PostgreSQL Server</a></li>
</ul>
</li>
<li><a href="/ej2-angular/grid/adaptive">Adaptive View</a></li>
Expand Down
10 changes: 7 additions & 3 deletions ej2-angular/grid/connecting-to-database/dapper.md
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,9 @@ public class CRUDModel<T> where T : class

When you run the application, the resultant Grid will look like this

![Angular Grid Component bound with Microsoft SQL Server using Dapper data](.../images/connecting-micro-curd.gif)
![Angular Grid Component bound with Microsoft SQL Server using Dapper data](../images/connecting-micro-curd.gif)

> Please find the sample in this [GitHub location](https://github.com/SyncfusionExamples/connecting-databases-to-angular-grid/tree/master/Binding%20Dapper%20using%20UrlAdaptor/Grid_Dapper).

## Binding data from Microsoft SQL Server using Dapper with CustomAdaptor

Expand Down Expand Up @@ -1786,7 +1788,7 @@ public class CRUDModel<T> where T : class
{% endhighlight %}
{% endtabs %}

## Batch Operation:
**Batch Operation:**

To perform the batch operation, override the **batchRequest** method of the `CustomAdaptor` and add the following code in the `CustomAdaptor`. The below code snippet demonstrated how to handle the batch update request within the **batchRequest** method of `CustomAdaptor`. Modify the logic within this method according to the requirements of your application.

Expand Down Expand Up @@ -1904,4 +1906,6 @@ public class CRUDModel<T> where T : class
{% endhighlight %}
{% endtabs %}

![Syncfusion Angular Grid bound with Microsoft SQL Server using Dapper data](../images/connecting-micro-curd.gif)
![Syncfusion Angular Grid bound with Microsoft SQL Server using Dapper data](../images/connecting-micro-curd.gif)

> Please find the sample in this [GitHub location](https://github.com/SyncfusionExamples/connecting-databases-to-angular-grid/tree/master/Binding%20Dapper%20using%20CustomAdaptor/Grid_Dapper_CustomAdaptor).
2,127 changes: 2,127 additions & 0 deletions ej2-angular/grid/connecting-to-database/entityframework.md

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -951,6 +951,8 @@ When you run the application, the resultant Syncfusion Angular Grid will look li

![Syncfusion Angular Grid bound with Microsoft SQL Server data](../images/connecting-micro-curd.gif)

> Please find the sample in this [GitHub location](https://github.com/SyncfusionExamples/connecting-databases-to-angular-grid/tree/master/Binding%20MS%20SQL%20database%20using%20UrlAdaptor/Grid_MSSQL).

## Binding data from Microsoft SQL Server using CustomAdaptor

This section describes step by step process how to retrieve data from a Microsoft SQL Server using [CustomAdaptor](https://ej2.syncfusion.com/angular/documentation/grid/connecting-to-adaptors/custom-adaptor) and bind it to the Syncfusion Angular Grid.
Expand Down Expand Up @@ -1923,4 +1925,6 @@ public class CRUDModel<T> where T : class
{% endhighlight %}
{% endtabs %}

![Syncfusion Angular Grid bound with Microsoft SQL Server data](../images/connecting-micro-curd.gif)
![Syncfusion Angular Grid bound with Microsoft SQL Server data](../images/connecting-micro-curd.gif)

> Please find the sample in this [GitHub location](https://github.com/SyncfusionExamples/connecting-databases-to-angular-grid/tree/master/Binding%20MS%20SQL%20database%20using%20CustomAdaptor/Grid_MSSQL).
10 changes: 7 additions & 3 deletions ej2-angular/grid/connecting-to-database/mysql-server.md
Original file line number Diff line number Diff line change
Expand Up @@ -1017,7 +1017,9 @@ public class CRUDModel<T> where T : class

When you run the application, the resultant Syncfusion Angular Grid will look like this

![Grid bound with MySQL Server data](.../images/connecting-micro-curd.gif)
![Grid bound with MySQL Server data](../images/connecting-micro-curd.gif)

> Please find the sample in this [GitHub location](https://github.com/SyncfusionExamples/connecting-databases-to-angular-grid/tree/master/Binding%20MySQL%20database%20using%20UrlAdaptor/Grid_MySQL).

## Binding data from MySQL Server using CustomAdaptor

Expand Down Expand Up @@ -1899,7 +1901,7 @@ public class CRUDModel<T> where T : class
{% endhighlight %}
{% endtabs %}

## Batch Operation:
**Batch Operation:**

To perform the batch operation, override the **batchRequest** method of the `CustomAdaptor` and add the following code in the `CustomAdaptor`. The below code snippet demonstrated how to handle the batch update request within the **batchRequest** method of `CustomAdaptor`. Modify the logic within this method according to the requirements of your application.

Expand Down Expand Up @@ -2037,4 +2039,6 @@ public class CRUDModel<T> where T : class
{% endhighlight %}
{% endtabs %}

![Syncfusion Angular Grid bound with MySQL Server data](../images/connecting-micro-curd.gif)
![Syncfusion Angular Grid bound with MySQL Server data](../images/connecting-micro-curd.gif)

> Please find the sample in this [GitHub location](https://github.com/SyncfusionExamples/connecting-databases-to-angular-grid/tree/master/Binding%20MySQL%20database%20using%20CustomAdaptor/Grid_MySQL).
Loading