• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

lucaslorentz / durabletask-extensions / 9336995150

02 Jun 2024 08:43AM UTC coverage: 81.967% (+0.03%) from 81.942%
9336995150

push

github

lucaslorentz
Update to EF Core 8

6 of 6 new or added lines in 1 file covered. (100.0%)

2350 of 2867 relevant lines covered (81.97%)

139.01 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/LLL.DurableTask.EFCore/Extensions/TaskExtensions.cs
1
using System.Collections.Generic;
2
using System.Threading.Tasks;
3

4
namespace LLL.DurableTask.EFCore.Extensions;
5

6
public static class TaskExtensions
7
{
8
    public static async Task<List<T>> WhenAllSerial<T>(this IEnumerable<Task<T>> tasks)
9
    {
10
        var result = new List<T>();
×
11
        foreach (var task in tasks)
×
12
        {
13
            result.Add(await task);
×
14
        }
15
        return result;
×
16
    }
17
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc