C
cverbiest
Guest
The properties I want to use in this case are rather fixed, they won't change during the iteration. Getters might pose a problem and definitely a performance hit. Properties without getters are very fast. Properties with getters ,even the simplest form, invoke a method when queried making them a lot slower. In my current use case I'll remove the getters on the properties . They are session properties that are queried a lot and I don't want the performance hit of a method invocation anyway. I'll use the properties in a where clause but I'll proceed with caution. Thanks for all the answers
Continue reading...
Continue reading...