DryadLinqContextFromEnumerableT Method DryadLINQ documentation
Converts an IEnumerable{T} to a DryadLinq specialized IQueryable{T}.

Namespace: Microsoft.Research.DryadLinq
Assembly: Microsoft.Research.DryadLinq (in Microsoft.Research.DryadLinq.dll) Version: 0.1.5.0 (0.1.5.0)
Syntax

public IQueryable<T> FromEnumerable<T>(
	IEnumerable<T> data
)

Parameters

data
Type: System.Collections.GenericIEnumerableT
The source data.

Type Parameters

T
The type of the records in the table.

Return Value

Type: IQueryableT
An IQueryable{T} representing the data with DryadLinq query provider.
Remarks

The source data will be serialized to a temp stream. The resulting fileset has an auto-generated name and a temporary lease.
See Also

Reference