ISelectExpandWrapper Interface
Represents the result of a $select and $expand query operation.
Namespace: System.Web.Http.OData.Query
Assembly: System.Web.Http.OData (in System.Web.Http.OData.dll)
Syntax
public interface ISelectExpandWrapper
public interface class ISelectExpandWrapper
type ISelectExpandWrapper = interface end
Public Interface ISelectExpandWrapper
Methods
Name | Description | |
---|---|---|
ToDictionary() | Projects the result of a $select and $expand query to a IDictionary<TKey, TValue>. |
|
ToDictionary(Func<IEdmModel, IEdmStructuredType, IPropertyMapper>) | Projects the result of a $select and/or $expand query to an IDictionary<TKey, TValue> using the given propertyMapperProvider. The propertyMapperProvider is used to obtain an IPropertyMapper for the IEdmStructuredType that this ISelectExpandWrapper instance represents. This IPropertyMapper will be used to map the properties of the ISelectExpandWrapper instance to the keys of the returned IDictionary<TKey, TValue>. This method can be used, for example, to map the property names in the IEdmStructuredType to the names that should be used to serialize the properties that this projection contains. |
See Also
System.Web.Http.OData.Query Namespace
Return to top