0
I’m getting the following error:
In that part of the Code:
public async Task<IEnumerable<Condominium>> FindCondominiumAllAsync()
{
return await FindAll()
.OrderBy(c => c.Name)
.ToListAsync();
}
'Iorderedqueryable' does not contain a Definition for 'Tolistasync' and no accessible Extension method 'Tolistasync' Accepting a first argument of type 'Iorderedqueryable'
You could help me where I’m going wrong ?
Return of the Findall:
IQueryable<TEntity> FindAll();
Att.
Matheus.
what returns the
FindAll()
?– Leandro Angelo
I put in question @Leandroangelo
– Matheus