I have a property declared as type dynamic
public dynamic Data {get;set;}
later in some method the type of data becomes System.Collections.Generic.List
so if use Data.AsQueryable() i get "System.Collections.Generic.List<Entity1
does not contain a definition for 'AsQueryable' " error.
The result has to be converted to Iqueryble and i am using the methods defined in Dynamic.Linq.
How should i proceed?