1. IRelation

Interface IRelation

Version:
日本語翻訳に関する免責事項

このページの翻訳はAIによって自動的に行われました。可能な限り正確な翻訳を心掛けていますが、原文と異なる表現や解釈が含まれる場合があります。正確で公式な情報については、必ず英語の原文をご参照ください。

Base interface for relations.

Namespace: Stylelabs.M.Sdk.Contracts.Base
Assembly: Stylelabs.M.Sdk.dll
Syntax
public interface IRelation : IMember, IDirtyTracking

Properties

Role

The role of this instance in the relation.

Declaration
RelationRole Role { get; }
Property Value
TypeDescription
RelationRole

Methods

Clear()

Clears the value(s) of the relation.

Declaration
void Clear()

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
IList<long> GetIds()
Returns
TypeDescription
IList<System.Int64>

A list of ids (never null).

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
void SetIds(IEnumerable<long> ids)
Parameters
TypeNameDescription
IEnumerable<System.Int64>ids

Ids

この記事を改善するための提案がある場合は、 お知らせください!