Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
mcintyre321 committed Aug 11, 2014
2 parents 2518821 + 092c58c commit ee86808
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,15 @@ Please see [QueryInfo.cs](https://github.com/mcintyre321/LinqToAnything/blob/mas

Skip, Take, Orderby and simple Where clauses are supported (enough to do Datatables)

Heres an example of something you can do with this

```
IQuerable<WADLogsTableRow> rows = wadLogsTableContenxt
.ToQueryable() //make azure table storage into an IQueryable, where Timestamp queries are done on partitionkey, the rest in memory
.ToCachedQueryable(CacheByTimestampIfDateRangeIsInThePast)
.ToChunkedQueryable(ChunkByTimestampIntoHours);
```

It makes it easy to disassemble and reconstruct Linq queries, so you can do custom stuff to them.

0 comments on commit ee86808

Please sign in to comment.