Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SQL

raven ql select count

from Orders                                             // select
group by Company                                        // group
where count() > 5                                       // filter
order by count() desc                                   // order
select count() as Count, key() as Company               // project
include Company                                         // side-load related data
Source by ravendb.net #
 
PREVIOUS NEXT
Tagged: #raven #ql #select #count
ADD COMMENT
Topic
Name
7+2 =