[This is preliminary documentation and is subject to change.]
Reads the entities from the given Azure table, filtered by the given query.
Namespace: Microsoft.Research.Naiad.Frameworks.Azure
Assembly: Microsoft.Research.Naiad.AzureSupport (in Microsoft.Research.Naiad.AzureSupport.dll) Version: 0.5.0.0 (0.5.0.0)
Syntax
C#
public static Stream<TEntity, Epoch> ReadFromAzureTable<TEntity>( this Computation manager, CloudTable table, TableQuery<TEntity> query ) where TEntity : new(), ITableEntity
Parameters
- manager
- Type: Microsoft.Research.NaiadComputation
Graph manager - table
- Type: CloudTable
Azure table - query
- Type: TableQueryTEntity
Query to be applied to the table
Type Parameters
- TEntity
- Type of entity returned by the query
Return Value
Type: StreamTEntity, EpochNaiad stream containing the entities extracted by the table query
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type Computation. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).See Also