The list of fields to query from the table.

Namespace: StreamBase.LiveView.API
Assembly: StreamBase.LiveView.API (in StreamBase.LiveView.API.dll) Version: 2.2.8.5956 (2.2.8.5956)

Syntax

         
 C#  Visual Basic  Visual C++ 
[ObsoleteAttribute("Use the FieldExpressions property instead.")]
public IList<Schema..::..Field> Fields { get; internal set; }
<ObsoleteAttribute("Use the FieldExpressions property instead.")> _
Public Property Fields As IList(Of Schema..::..Field)
	Get
	Friend Set
public:
[ObsoleteAttribute(L"Use the FieldExpressions property instead.")]
property IList<Schema..::..Field^>^ Fields {
	IList<Schema..::..Field^>^ get ();
	internal: void set (IList<Schema..::..Field^>^ value);
}

Remarks

This property is now obsolete. Please use the FieldExpressions property instead, which in addition to simple field names can also handle more complex expressions (e.g. "Sum(Quantity*Price) AS Value").

See Also