Skip to content

Instantly share code, notes, and snippets.

@igorkulman
Created June 20, 2013 11:39
Show Gist options
  • Save igorkulman/5822053 to your computer and use it in GitHub Desktop.
Save igorkulman/5822053 to your computer and use it in GitHub Desktop.
let getLogs (date:DateTime) = seq {
for e in client.GetDataServiceContext().CreateQuery<LogEntity>("LogEntity") do
if e.PartitionKey = date.ToString("yyyy-MM-dd") then
yield e
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment