Closed nnita closed 8 years ago
Please provide the code which you use to traverse the result sequence. Do you use foreach
? Do you call toArray
or toList
? What happens? Is the sequence empty?
Please also set error_reporting = E_ALL
in your configuration file or call error_reporting(-1)
in your script for debugging purposes. Most likely, there's a missing array index and the warning about this is ignored by PHP because of your configuration.
The primary problem of your query is that you use select
before orderBy
and thenBy
, which both rely on data you don't select. I think what you need is this:
$xmlsort1 = from($xdocsort1)
->orderBy(...)
->thenBy(...)
->select(...);
Unlike SQL, which uses natural language and fixed order of statements, in LINQ transformations are applied sequentially, one after another. So usual "select - from - where" becomes "from - where - select".
PHP's print_r
and var_dump
functions aren't very useful for sequences. You can call toArray
or toList
methods to get plain old arrays and then dump their data.
Google Translate:
Por favor, indique el código que se utiliza para atravesar la secuencia resultado. Cómo se utiliza foreach
? Cómo se llama toArray
o toList
? ¿Lo que pasa? Está vacía la secuencia?
Por favor también establecer error_reporting = E_ALL
en el archivo de configuración o llame error_reporting (-1)
en la secuencia de comandos para fines de depuración. Lo más probable es que hay un índice de matriz que falta y la advertencia acerca de esto es ignorado por PHP debido a su configuración.
El problema principal de la consulta es que se utiliza de select
antes de orderBy
y thenBy
, que ambos se basan en los datos no se selecciona. Creo que lo que necesita es la siguiente:
$xmlsort1 = from($xdocsort1)
->orderBy(...)
->thenBy(...)
->select(...);
Al igual que SQL, que utiliza el lenguaje natural y el orden fijo de declaraciones, en las transformaciones de LINQ se aplican de forma secuencial, una tras otra. Así que de costumbre "select - from - where" se convierte en "from - where - select".
Funciones print_r
y var_dump
de PHP no son muy útiles para las secuencias. Puede llamar a los métodos toArray
o toList
para obtener matrices llanura de edad y luego volcar sus datos.
al realizar la consulta
me retorna este codigo
como puedo iterar o manejar el objeto , no puedo recorrerlo no puedo hacer nada con el .
Google Translate: