I’m quite new to ruby development, and i’m currently working on a project in ruby 1.8.7 using rails 2.3.11, and I was wondering if there is an equivalent in this language to C#’s linq for the collection manipulation, such as a where clause.
Thank you.
The equivalent of
whereof Linq in Ruby is find_allCheck the documentation for the Enumerable Module for other functions.