Hi,

Just to check...

I found that running the following LINQ query on the iPhone device fails with 
an ExecutionEngineException - Attempt to JIT Compile... error:

                        var orderedList =
                            from location in ActualAvailableEvents
                            orderby location.DistanceFromCurrentLocation, 
location.StartDateTime
                            select location;

Whereas the code runs fine after changing the orderby clause to:

                        var orderedList =
                            from location in ActualAvailableEvents
                            orderby location.DistanceFromCurrentLocation
    orderby location.StartDateTime
                            select location;

Is this a bug or a limitation in MonoTouch?

Thanks! Regards, Roy

Op dit e-mail bericht is de disclaimer van Info Support van toepassing, zie 
http://www.infosupport.com/disclaimer

[cid:disclaimer4e08.jpg]<http://www.infosupport.com>

<<inline: disclaimer4e08.jpg>>

_______________________________________________
MonoTouch mailing list
MonoTouch@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/monotouch

Reply via email to