Adding Property Count to Proxy record

In some cases we would just like to fetch count of ManyValuedAssocs without fetching all entries.

For this it would help a lot if proxy would provide count as a property.

So we could choose:

  1. use new property, knowing it would execute select count(1) from ...
  2. use proxy.value.count, if we would have to iterate through the list