Represents a callback function for filtering a list of data entities of type T.
- Namespace
- DbSyncKit
.DB .Fetcher - Interfaces
-
- ICloneable
- ISerializable
- Base Types
-
- object
- Delegate
- MulticastDelegate
Syntax
public delegate List<T> FilterCallback<T>(List<T> data) : MulticastDelegate, ICloneable,
ISerializableRemarks
This delegate defines a callback function that takes a list of data entities as input,
performs filtering operations on the data, and returns the filtered list.
Type Parameters
| Name | Description |
|---|---|
| T | The type of data entities to filter. |
Operators
| Name | Value | Summary |
|---|---|---|
| operator != |
bool |
Inherited from Delegate
|
| operator != |
bool |
Inherited from MulticastDelegate
|
| operator == |
bool |
Inherited from Delegate
|
| operator == |
bool |
Inherited from MulticastDelegate
|