1
I have the following select below:
var Filhos = FluxoWorkflow_
.FindAll(N => N.IdPai.GetValueOrDefault() == dr.IdFluxoWorkflow);
I had to change my typed class to a DataTable
I’m just not able to change select to fetch all the corresponding data in the following filter:
.FindAll(N => N.IdPai.GetValueOrDefault() == dr.IdFluxoWorkflow);
It didn’t work out that way, I’m using Framework v2.0 and many things don’t compile on IIS, but I managed using select
DataRow[] Filhos = FluxoWorkflow_
 .Select("[IdPai] =" + dr["IdFluxoWorkflow"]);
. Thanks for the tips.– Marco Souza
Quiet. Nice to be able to help a little.
– Jéf Bueno