281 (E)- Set operation cannot apply on iteration or instance operand
Set operations must be preceded by a simple property name or function. Iteration operator () or instance operator (0) in front of a collection operation are not valid.
Person.count(); // is correct
Person(0).count(); // is wrong
Person().count(); // is wrong