Smart Completion in lambda expressions not working
Hi!
There is some extension method:
public static EntityEntries<TEntity> Entries<TEntity, TContext>(this TContext dbContext, Func<TContext, IEnumerable<TEntity>> entitiesFunc)
where TContext : DbContext
where TEntity : class
{
return new EntityEntries<TEntity>(dbContext, entitiesFunc(dbContext));
}
Now I'm trying smart completion:

Why no the suggest for lambda func?
I'm using VS 2017 + Resharper 2017
Thx
Please sign in to leave a comment.
Hello!
Thank you for contacting us.
Could you please provide some sample solution so we could reproduce the issue?
Thank you.