Using ODP.NET the return type of "SELECT COUNT(*) ..." is decimal, not integer.
So, using linq Count() function throw a conversion exception in
Projection\DataProjectorToValueList.cs
at
_destination.Add((T)valueToSet);
where T is long or int and valueToSet is ((object) decimal)
Thanks, Onorio