[ANN] MagmaServerLoader-cmm.19 - Complex Queries

goran at krampe.se goran at krampe.se
Wed Aug 9 06:32:57 UTC 2006


Hi!

goran at krampe.se wrote:
> Hi Chris!
> 
> Not sure what happened in the latest cmm.19 release but this code:
> 
>   myReader := myMagmaCollection
>     read: #lastName
>     from: 'Jackson'
>     to: 'Muller'
> 
> ...does not work anymore since read:from:to: is not implemented any

I presume the above should now be done using:

myReader := aMagmaCollection where:
		[ :reader |
			reader 
				read: #lastName
				from: 'Jackson'
				to: 'Muller' ]

regards, Göran


More information about the Magma mailing list