I have a Entity called deal
and deal
has a property called date
which is the time this deal object inserted into the store.
and one day may have several deal
s.
So I want count some data group by day, I want fetch day
and countofsomething
like:
2013-06-03 3
2013-06-02 4
and I don't want to use sectionPath
because it only put deals into section.
I know I can have this done by have another property(type:string) like dayOfTheDate
which is like 2013-06-03
in each object.
btw, transient property don't seem to work in this situation
Could you understand what I am looking for?
Comment here so I can provide more detail
Thanks all of you.