Used for views with anonymous type constructor as the result selector, converts the View to a View<dynamic> so it can be used for data binding and programmatic access.

Namespace:  C1.LiveLinq.LiveViews
Assembly:  C1.LiveLinq (in C1.LiveLinq.dll)

Syntax

C#
public View<Object> AsDynamic()
Visual Basic
Public Function AsDynamic As View(Of Object)

Return Value

A dynamic view.

Remarks

A view with anonymous type constructor as the result selector cannot be used for data binding or programmatic access without applying AsDynamic()()()() to it. An attempt to do so results in an exception. After applying AsDynamic()()()(), such view can be used for data binding and programmatic access without limitations.

See Also