Skip to content

Commit

Permalink
Fixed some silly README stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
robconery committed Dec 9, 2011
1 parent 65c3f93 commit 83cb229
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.markdown
Expand Up @@ -147,7 +147,7 @@ Aggregates with Named Arguments
You can do the same thing as above for aggregates:

var sum = table.Sum(columns:Price, CategoryID:5);
var avg = table.Sum(columns:Price, CategoryID:3);
var avg = table.Avg(columns:Price, CategoryID:3);
var min = table.Min(columns:ID);
var max = table.Max(columns:CreatedOn);
var count = table.Count();
Expand Down

0 comments on commit 83cb229

Please sign in to comment.