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

loresoft / MediatR.CommandQuery / 10111880471

26 Jul 2024 01:13PM UTC coverage: 57.794%. Remained the same
10111880471

push

github

web-flow
Merge pull request #532 from loresoft/dependabot/nuget/Microsoft.EntityFrameworkCore-8.0.7

Bump Microsoft.EntityFrameworkCore from 8.0.6 to 8.0.7

350 of 710 branches covered (49.3%)

Branch coverage included in aggregate %.

1033 of 1683 relevant lines covered (61.38%)

19.53 hits per line

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

0.0
/src/MediatR.CommandQuery/Commands/EntityIdentifiersCommand.cs
1
using System.Diagnostics.CodeAnalysis;
2
using System.Security.Principal;
3

4
namespace MediatR.CommandQuery.Commands;
5

6
public abstract class EntityIdentifiersCommand<TKey, TResponse>
7
    : PrincipalCommandBase<TResponse>
8
{
9
    protected EntityIdentifiersCommand(IPrincipal? principal, [NotNull] IEnumerable<TKey> ids)
10
        : base(principal)
×
11
    {
12
        if (ids is null)
×
13
            throw new ArgumentNullException(nameof(ids));
×
14

15
        Ids = ids.ToList();
×
16
    }
×
17

18
    public IReadOnlyCollection<TKey> Ids { get; }
×
19
}
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