I have a lambda search, which refers to information in a grid, but with each different query it changes the place information:
Indicadores = (Pegatodos().Where(f => f.STATUS == "A")
.Select(x => new
{ SEQINDICFINANC = x.SEQ, DESCRICAO = x.DESCRICAO, SIGLA = x.SIGLA })
.OrderBy( x => x.SEQ)
.ToList())
It returns the main information of my grid:
NOME datas | datas | datas
seq 0 0 0
seq 0 0 0
seq 0 0 0
seq 0 0 0
But with each query for periods of different dates the position of seq
changes, and I need them to always be in the same position.