Entity.Get<FieldType>(String, ForgeTypeId)
Method
Description:
Retrieves the value of the field in the entity.
Retrieves the value of the field in the entity.
Remarks:
The template parameter must match the type of the field (specified when creating the Schema) exactly; this method does not perform data type conversions. The types for containers are IList for arrays and IDictionary for maps.
This method is a shortcut that will look up the field by name. If you want to call it on many entities, it is faster if you look up the field yourself.
Parameters
| Parameter | Type | Description |
|---|---|---|
| fieldName | String | The name of the field to retrieve. |
| unitTypeId | ForgeTypeId | Identifier of the unit to which the value will be converted before returning. Must be compatible with the spec specified when creating the Schema. |
Return Value
| Type | Description |
|---|---|
| ArgumentNullException | FieldType |
Exceptions
| Exception | Condition |
|---|---|
| ArgumentNullException | A non-optional argument was NULL |
| InvalidOperationException | The Field belongs to a different Schema from this Entity, or this Entity is invalid. |
| ArgumentException | Requested type does not match the field type. |
| ArgumentException | The name matches no field in this Entity's Schema. |
| ArgumentException | The unitTypeId value is not compatible with the field description. |
| ArgumentException | This field's subschema prevents reading. |