Represents the difference between two sets of items as groups of new, existing and removed items.
Namespace: EgonsoftHU.Extensions.Bcl
Assembly: EgonsoftHU.Extensions.Bcl (in EgonsoftHU.Extensions.Bcl.dll) Version: 3.0.1+8c729d04d0fcab10705485e5626d4fdebeaa818d
C#
public ItemsChangeResult(
IReadOnlyList<TIncoming> ItemsToAdd,
IReadOnlyList<TIncoming> ItemsToUpdate,
IReadOnlyList<TExisting> ItemsToRemove
)
VB
Public Sub New (
ItemsToAdd As IReadOnlyList(Of TIncoming),
ItemsToUpdate As IReadOnlyList(Of TIncoming),
ItemsToRemove As IReadOnlyList(Of TExisting)
)
- IReadOnlyList(TIncoming)
- Incoming items to add.
- IReadOnlyList(TIncoming)
- Incoming items based on which to update existing items.
- IReadOnlyList(TExisting)
- Existing items to be removed.
ItemsChangeResult(TIncoming, TExisting) Class
EgonsoftHU.Extensions.Bcl Namespace