Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mcintyre321 committed Aug 7, 2014
1 parent b02c0c1 commit 092c58c
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 092c58c

Please sign in to comment.