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

loresoft / EntityFrameworkCore.Generator / 27767067052

18 Jun 2026 02:35PM UTC coverage: 70.481% (-4.9%) from 75.418%
27767067052

push

github

pwelter34
Update SourceSynchronizer.cs

913 of 1785 branches covered (51.15%)

Branch coverage included in aggregate %.

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

297 existing lines in 10 files now uncovered.

4094 of 5319 relevant lines covered (76.97%)

1291.15 hits per line

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

0.0
/src/EntityFrameworkCore.Generator.Core/Metadata/Parsing/ParsedEntity.cs
1
using System.Diagnostics;
2

3
namespace EntityFrameworkCore.Generator.Metadata.Parsing;
4

5
[DebuggerDisplay("Table: {TableName}, Entity: {EntityClass}, Mapping: {MappingClass}")]
6
public class ParsedEntity
7
{
UNCOV
8
    public ParsedEntity()
×
9
    {
UNCOV
10
        Properties = [];
×
UNCOV
11
        Relationships = [];
×
UNCOV
12
    }
×
13

14
    public string EntityClass { get; set; } = null!;
15
    public string MappingClass { get; set; } = null!;
16

17
    public string TableName { get; set; } = null!;
18
    public string? TableSchema { get; set; }
19

20
    public List<ParsedProperty> Properties { get; }
21
    public List<ParsedRelationship> Relationships { get; }
22
}
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