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

loresoft / EntityFrameworkCore.Generator / 27730465225

18 Jun 2026 01:21AM UTC coverage: 74.693% (+19.8%) from 54.885%
27730465225

push

github

pwelter34
update tests

922 of 1609 branches covered (57.3%)

Branch coverage included in aggregate %.

7 of 7 new or added lines in 2 files covered. (100.0%)

230 existing lines in 23 files now uncovered.

4007 of 4990 relevant lines covered (80.3%)

1258.69 hits per line

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

50.0
/src/EntityFrameworkCore.Generator.Core/Metadata/Generation/Property.cs
1
using System.Data;
2
using System.Diagnostics;
3

4
namespace EntityFrameworkCore.Generator.Metadata.Generation;
5

6
[DebuggerDisplay("Property: {PropertyName}, Column: {ColumnName}, Type: {NativeType}")]
7
public class Property : ModelBase
8
{
9
    public Entity Entity { get; set; } = null!;
10

11
    public string PropertyName { get; set; } = null!;
12

13
    public string ColumnName { get; set; } = null!;
14

15
    public string? NativeType { get; set; }
16

17
    public DbType DataType { get; set; }
18

19
    public Type SystemType { get; set; } = null!;
20

21
    public string SystemTypeName { get; set; } = null!;
22

23
    public bool? IsNullable { get; set; }
24

25
    public bool IsRequired => IsNullable == false;
3,213✔
26

UNCOV
27
    public bool IsOptional => IsNullable == true;
×
28

29
    public bool? IsPrimaryKey { get; set; }
30

31
    public bool? IsForeignKey { get; set; }
32

33
    public bool? IsReadOnly { get; set; }
34

35
    public bool? IsRowVersion { get; set; }
36

37
    public bool? IsConcurrencyToken { get; set; }
38

39
    public bool? IsUnique { get; set; }
40

41
    public bool? IsComputed { get; set; }
42

43
    public bool? IsIdentity { get; set; }
44

45
    public int? Size { get; set; }
46

47
    public object? DefaultValue { get; set; }
48

49
    public string? Default { get; set; }
50

51
    public bool? AllowInsert { get; set; }
52

53
    public bool? AllowUpdate { get; set; }
54
}
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