Back to Devexpress

EntityInstantFeedbackSource.Refresh() Method

corelibraries-devexpress-dot-data-dot-linq-dot-entityinstantfeedbacksource-7e96c715.md

latest2.4 KB
Original Source

EntityInstantFeedbackSource.Refresh() Method

Refreshes the EntityInstantFeedbackSource.

Namespace : DevExpress.Data.Linq

Assembly : DevExpress.Data.v25.2.dll

NuGet Package : DevExpress.Data

Declaration

csharp
public void Refresh()
vb
Public Sub Refresh

Remarks

This method re-filters, re-sorts and re-groups the bound control rows and recalculates summaries.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Refresh() 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-mvvm-expenses-app/CS/MVVMExpenses/Common/DataModel/EntityFramework/InstantFeedbackSource.cs#L45

csharp
void IInstantFeedbackSource<TEntity>.Refresh() {
    source.Refresh();
}

winforms-mvvm-expenses-app/VB/MVVMExpenses/Common/DataModel/EntityFramework/InstantFeedbackSource.vb#L41

vb
Private Sub Refresh() Implements IInstantFeedbackSource(Of TEntity).Refresh
    _source.Refresh()
End Sub

See Also

EntityInstantFeedbackSource Class

EntityInstantFeedbackSource Members

DevExpress.Data.Linq Namespace