1. EntityLoadOptions

Class EntityLoadOptions

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

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

Specifies if and how resulting entities should be loaded.

Inheritance
System.Object
EntityLoadOptions
Namespace: Stylelabs.M.Base.Querying
Assembly: Stylelabs.M.Sdk.dll
Syntax
public class EntityLoadOptions : object

Properties

CulturesToLoad

The cultures to load the entities in. If not specified, the entities will only be loaded in the invariant-culture.

If the collection contains value "*", the entities will be loaded in all installed cultures.

Declaration
public IEnumerable<string> CulturesToLoad { get; set; }
Property Value
TypeDescription
IEnumerable<System.String>

LoadEntities

Indicates if entities should be loaded.

Declaration
public bool LoadEntities { get; set; }
Property Value
TypeDescription
System.Boolean

PropertiesToLoad

The names of the properties to load with the entities. If the value contains "*", all properties will be loaded. If the value is null, no properties will be loaded.

The default value is "*", which mean all properties will be loaded.

Declaration
public IEnumerable<string> PropertiesToLoad { get; set; }
Property Value
TypeDescription
IEnumerable<System.String>

RelationsToLoad

The names of the relations to load with the entities. If the value is null, no relations will be loaded.

The default value is null, which mean no relations will be loaded.

Declaration
public IEnumerable<string> RelationsToLoad { get; set; }
Property Value
TypeDescription
IEnumerable<System.String>

Methods

ToQueryLoadConfiguration()

Converts the load-options to an instance of IQueryLoadConfiguration.

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