Skip to content

Commit dde97c5

Browse files
Update Readme.md
1 parent 95fa2f8 commit dde97c5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Readme.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Dashboard for MVC - How to Load and Save Dashboards from/to a Database
88

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.
1010

1111
<!-- default file list -->
1212
## Files to Look At
@@ -16,26 +16,26 @@ This example shows how to create a custom dashboard storage that allows you to s
1616
<!-- default file list end -->
1717

1818
## 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.
2020

2121
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).
2222

2323
The following API used in the example:
2424

2525
- [LoadDashboard](https://docs.devexpress.com/Dashboard/DevExpress.DashboardWeb.IDashboardStorage.LoadDashboard(System.String)) 
2626

27-
Returns a dashboard by its ID in the XDocument format, which describes an object model of the dashboard.
27+
Loads a dashboard with the specified ID in XDocument format from storage.
2828
- [GetAvailableDashboardsInfo](https://docs.devexpress.com/Dashboard/DevExpress.DashboardWeb.IDashboardStorage.GetAvailableDashboardsInfo) 
2929

3030
Returns a list of IDs and Captions of dashboards available in the data storage.
3131
- [SaveDashboard](https://docs.devexpress.com/Dashboard/DevExpress.DashboardWeb.IDashboardStorage.SaveDashboard(System.String-System.Xml.Linq.XDocument)) 
3232

33-
Updates the dashboard with new settings by its id.
33+
Saves the specified dashboard with new settings to the dashboard storage.
3434
- [AddDashboard](https://docs.devexpress.com/Dashboard/DevExpress.DashboardWeb.IEditableDashboardStorage.AddDashboard(System.Xml.Linq.XDocument-System.String))
3535

36-
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 caption to the data storage and returns the ID of the new saved dashboard.
3737

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.
3939

4040
## Documentation
4141

0 commit comments

Comments
 (0)