[Solved] Cannot implicitly convert type ‘System.Collections.Generic.IEnumerable’ to ‘System.Collections.Generic.List’ [closed]
Entity Framework has some async methods. You should use ToListAsync() but your method has to return the complete object. When you receive the object returned by the method, then you can use the Select method to get what you want. public async Task<IEnumerable<Intermediary>> GetTest(string company) { var db = new SibaCiidDbContext(); var results = (from … Read more