Interface ISetItemUpdater
Some ISetCopier implementations also have their internal properties to update with foreign key reference changes to child items.
For instance if the store references in a string, the system wont automatically update that. This provides those items a method to update their own internal properties with new ids pointing to the new child items
Namespace: LemonEdge.Core
Assembly: API.dll
Syntax
public interface ISetItemUpdater
Methods
UpdateAllIDs(Func<Type, Guid, Guid>)
Allows this item to update its ids through calling a function that given an original ID will return the new id of that item created while importing all items. If the original id is still the same that will be returned.
Declaration
void UpdateAllIDs(Func<Type, Guid, Guid> findNewID)
Parameters
Type | Name | Description |
---|---|---|
System.Func<System.Type, System.Guid, System.Guid> | findNewID |