Skip to content

Alias indexer (1 of 2)

Gets the prefixed expression with the specified field.

public string this[IField field] { get; }
parameter description
field The field.

Return Value

Expression like t0.fieldName.

Property Value

The String.

Exceptions

exception condition
ArgumentNullException field is null.

See Also


Alias indexer (2 of 2)

Gets the prefixed expression with the specified field name.

public string this[string fieldName] { get; }
parameter description
fieldName Name of the field.

Return Value

Expression like t0.fieldName.

Property Value

The String.

See Also