Class RelationBase
このページの翻訳はAIによって自動的に行われました。可能な限り正確な翻訳を心掛けていますが、原文と異なる表現や解釈が含まれる場合があります。正確で公式な情報については、必ず英語の原文をご参照ください。
Base class for relations.
Inherited Members
Namespace: Stylelabs.M.Sdk.Models.Base
Assembly: Stylelabs.M.Sdk.dll
Syntax
Constructors
RelationBase(String)
Declaration
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name |
Properties
DefinitionType
See DefinitionType.
Declaration
Property Value
| Type | Description |
|---|---|
| MemberDefinitionType |
Overrides
Role
The role of this instance in the relation.
Declaration
Property Value
| Type | Description |
|---|---|
| RelationRole |
Methods
Clear()
Clears the value(s) of the relation.
Declaration
GetIds()
This utility method allows getting the value of any type of relation.
In case of an IToManyRelation the result will contain all ids on the relation.
In case of an IToOneRelation the list can contain 1 id (maximum) if an id was set on the relation. If no id was set on the relation, an empty list is returned.
Declaration
Returns
| Type | Description |
|---|---|
| IList<System.Int64> |
A list of ids (never null). |
GetTypeName()
Declaration
Returns
| Type | Description |
|---|---|
| System.String |
SetIds(IEnumerable<Int64>)
Sets the ids on the relations values. The values should be strictly positive.
In case of an IToManyRelation, the list of ids will be set on the relation.
In case of an IToOneRelation, ids can have at most one value.
If the list is empty then the value will be set to null.
Declaration
Parameters
| Type | Name | Description |
|---|---|---|
| IEnumerable<System.Int64> | ids |
Ids |