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

loresoft / EntityChange / 10792630471

10 Sep 2024 12:40PM UTC coverage: 39.608%. Remained the same
10792630471

Pull #105

github

web-flow
Merge 46a6701c4 into de5c0d320
Pull Request #105: Bump FluentAssertions from 6.12.0 to 6.12.1

237 of 731 branches covered (32.42%)

Branch coverage included in aggregate %.

571 of 1309 relevant lines covered (43.62%)

60.5 hits per line

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

0.0
/src/EntityChange/EntityProfile.cs
1
using EntityChange.Fluent;
2

3
namespace EntityChange;
4

5
/// <summary>
6
/// A <see langword="base"/> class for creating entity comparision profiles
7
/// </summary>
8
/// <typeparam name="TEntity">The type of the entity.</typeparam>
9
public abstract class EntityProfile<TEntity> : EntityMappingBuilder<TEntity>, IEntityProfile
10
    where TEntity : class
11
{
12
    /// <summary>
13
    /// Gets or sets the type of the entity.
14
    /// </summary>
15
    /// <value>
16
    /// The type of the entity.
17
    /// </value>
18
    Type IEntityProfile.EntityType => typeof(TEntity);
×
19

20
    /// <summary>
21
    /// Registers the specified class mapping.
22
    /// </summary>
23
    /// <param name="entityMapping">The class mapping.</param>
24
    void IEntityProfile.Register(EntityMapping entityMapping)
25
    {
26
        EntityMapping = entityMapping;
×
27
        Configure();
×
28
    }
×
29

30

31
    /// <summary>
32
    /// Configure the <typeparamref name="TEntity"/> mapping information.
33
    /// </summary>
34
    public abstract void Configure();
35
}
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

© 2026 Coveralls, Inc