You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Readme.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
7
7
# Dashboard for MVC - How to Load and Save Dashboards from/to a Database
8
8
9
-
This example shows how to create a custom dashboard storage that allows you to store dashboards in a database.
9
+
This example shows how to create a custom dashboard storage to load and save dashboards in a database.
10
10
11
11
<!-- default file list -->
12
12
## Files to Look At
@@ -16,26 +16,26 @@ This example shows how to create a custom dashboard storage that allows you to s
16
16
<!-- default file list end -->
17
17
18
18
## Example Overview
19
-
The example uses the [System.Data.SqlClient](https://msdn.microsoft.com/en-us/library/system.data.sqlclient(v=vs.110).aspx) members to connect and operate an MS SQL server database.
19
+
The example uses the [System.Data.SqlClient](https://msdn.microsoft.com/en-us/library/system.data.sqlclient(v=vs.110).aspx) members to connect and manage an MS SQL server database.
20
20
21
21
A custom dashboard storage should implement one of the following interfaces: [IDashboardStorage](https://docs.devexpress.com/Dashboard/DevExpress.DashboardWeb.IDashboardStorage) or [IEditableDashboardStorage](https://docs.devexpress.com/Dashboard/DevExpress.DashboardWeb.IEditableDashboardStorage).
Takes a dashboard definition with its caption, saves it to the data storage, and returns the ID of a new saved dashboard.
36
+
Saves a dashboard definition and its captionto the data storage and returns the ID of the new saved dashboard.
37
37
38
-
Additionally, this example contains an SQL file ([SavedDashboards.sql](./CS/MVCDashboardDesigner/SavedDashboards.sql)), which can be used to recreate a database used in this example on your side. Do not forget to update the connection string in the **Web.config** file to make it valid in your environment.
38
+
Additionally, this example contains an SQL file ([SavedDashboards.sql](./CS/MVCDashboardDesigner/SavedDashboards.sql)) that can be used to recreate a database used in this example. Update the connection string in the **Web.config** file to make it valid in your environment.
0 commit comments