Interface IRedbList
REDB list interface
Represents a reference list for list-type fields
public interface IRedbList
Properties
Methods
AddItem(string, IRedbObject, string?)
Add item to list with linked object (Aggregate Root pattern)
IRedbListItem AddItem(string value, IRedbObject linkedObject, string? alias = null)
AddItem(string, long?, string?)
Add item to list (Aggregate Root pattern)
IRedbListItem AddItem(string value, long? idObject = null, string? alias = null)
CreateItem(string, IRedbObject, string?)
Create item for list with linked object
IRedbListItem CreateItem(string value, IRedbObject linkedObject, string? alias = null)
CreateItem(string, long?, string?)
Create item for list without adding to collection
IRedbListItem CreateItem(string value, long? idObject = null, string? alias = null)