corelibraries-devexpress-dot-data-dot-linq-dot-linqservermodesource-79a681b3.md
Forces the bound data-aware control to reload data from the data store.
Namespace : DevExpress.Data.Linq
Assembly : DevExpress.Data.v25.2.dll
NuGet Package : DevExpress.Data
public void Reload()
Public Sub Reload
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Reload() method.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
winforms-grid-implement-crud-operations-linqservermodesource/CS/LinqServerModeSource/Form1.cs#L138
}
linqServerModeSource1.Reload();
for (int i = 0; i < gridView1.DataRowCount; i++)
winforms-grid-implement-crud-operations-linqservermodesource/VB/LinqServerModeSource/Form1.vb#L117
End Try
linqServerModeSource1.Reload()
For i As Integer = 0 To gridView1.DataRowCount - 1
See Also