Method | Description | |
---|---|---|
ToInternalID ( IList |
Get internal IDs of a list of given entities
|
|
ToInternalID ( int original_id ) : int |
Get internal ID of a given entity. If the given external ID is unknown, create a new internal ID for it and store the mapping.
|
|
ToOriginalID ( IList |
Get original (external) IDs of a list of given entities
|
|
ToOriginalID ( int internal_id ) : int |
Get original (external) ID of a given entity, if the given internal ID is unknown, throw an exception.
|
public ToInternalID ( IList |
||
original_id_list | IList |
the list of original (external) IDs |
return | IList |
public ToInternalID ( int original_id ) : int | ||
original_id | int | the original (external) ID of the entity |
return | int |
public ToOriginalID ( IList |
||
internal_id_list | IList |
the list of internal IDs |
return | IList |
public ToOriginalID ( int internal_id ) : int | ||
internal_id | int | the internal ID of the entity |
return | int |