SOLVED: I now get the paramValues values with this workaround, which 
provides all required values and keeps them in the correct order:

            ICollection<NHibernate.Param.NamedParameter> namedParameters = 
loader.Translator.CollectedParameters;
            object[] paramValues = new object[namedParameters.Count];
            int pc = 0;
            foreach (var item in namedParameters)  //do it with foreach - 
no indexer for ICollection.
            {
                paramValues[pc] = item.Value;
                pc++;
            }

-- 
You received this message because you are subscribed to the Google Groups 
"nhusers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/nhusers.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to