Open a dataset as a DryadLinq specialized IQueryable{T}.
Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.2.1.0 (0.2.1.0)
Syntax
public IQueryable<T> FromStore<T>( string dataSetUri, Expression<Func<Stream, IEnumerable<T>>> deserializer = null )
Parameters
- dataSetUri
- Type: SystemString
The name of the dataset - deserializer (Optional)
- Type: System.Linq.ExpressionsExpressionFuncStream, IEnumerableT
The function to deserialize the input dataset
Type Parameters
- T
- The type of the records in the table
Return Value
Type: IQueryableTAn IQueryable{T} representing the data
See Also