Hi There
I have one problem in searching recrods
When I search record first time it return nothing in first click but second click
it returning the records...
I using following code.
Where Is Mistake?
ObservableCollection<PESSOA_PROFISSAO> Profissoes = new ObservableCollection<PESSOA_PROFISSAO>();
_em.PESSOA_PROFISSAO_GRUPOS.Where(f => f.ID_PESSOA_PROFISSAO_GRUPO == PessoaProfissaoGrupo.ID_PESSOA_PROFISSAO_GRUPO).ExecuteAsync(op =>
{
if (op.IsCompleted)
{
op.Results.FirstOrDefault().PESSOA_PROFISSAO.ForEach(Profissoes.Add);
agDataGrid3.DataSource = Profissoes;
}
else
{
MessageBox.Show(op.Error.Message);
}
});
Thanks