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

loresoft / EntityFrameworkCore.Generator / 15072048022

16 May 2025 03:31PM UTC coverage: 55.392% (-1.4%) from 56.772%
15072048022

push

github

pwelter34
enable nullable support

616 of 1271 branches covered (48.47%)

Branch coverage included in aggregate %.

233 of 397 new or added lines in 61 files covered. (58.69%)

17 existing lines in 11 files now uncovered.

1824 of 3134 relevant lines covered (58.2%)

88.56 hits per line

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

71.43
/src/EntityFrameworkCore.Generator.Core/Metadata/Parsing/ParsedProperty.cs
1
using System.Diagnostics;
2

3
namespace EntityFrameworkCore.Generator.Metadata.Parsing;
4

5
[DebuggerDisplay("Column: {ColumnName}, Property: {PropertyName}")]
6
public class ParsedProperty
7
{
8
    public string? ColumnName { get; set; }
630✔
9

10
    public string PropertyName { get; set; } = null!;
630✔
11

NEW
12
    public string? PropertyType { get; set; }
×
13

14
    public bool IsValid()
15
    {
16
        return !string.IsNullOrEmpty(ColumnName)
210!
17
               && !string.IsNullOrEmpty(PropertyName);
210✔
18
    }
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

© 2026 Coveralls, Inc