Hi
What would be the syntax to call Linq methods?

for example:
I have an IQueryable<Users> and I want to get the equivalent out of

from user in MyRepository.Users
where user.name == "somename"

That of course is only one example, I want to do a lot more :)

My best guess is that I would have to do something like this only it doesn't
work

System::Linq::Queryable.where(MyRepository.Users, lambda { |user|
user.name== "somename" })

yields wrong number of arguments (2 for 2147483647)

So what is the correct way?
---
Met vriendelijke groeten - Best regards - Salutations
Ivan Porto Carrero
Blog: http://flanders.co.nz
Twitter: http://twitter.com/casualjim
Author of IronRuby in Action (http://manning.com/carrero)
_______________________________________________
Ironruby-core mailing list
Ironruby-core@rubyforge.org
http://rubyforge.org/mailman/listinfo/ironruby-core

Reply via email to