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

loresoft / EntityFrameworkCore.Generator / 26121762180

19 May 2026 07:58PM UTC coverage: 54.885% (-0.03%) from 54.917%
26121762180

push

github

pwelter34
Skip Create/Update models for views; improve DI setup

653 of 1353 branches covered (48.26%)

Branch coverage included in aggregate %.

2 of 2 new or added lines in 1 file covered. (100.0%)

46 existing lines in 4 files now uncovered.

1892 of 3284 relevant lines covered (57.61%)

63.09 hits per line

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

66.67
/src/EntityFrameworkCore.Generator.Core/Serialization/DatabaseMatchModel.cs
1
namespace EntityFrameworkCore.Generator.Serialization;
2

3
/// <summary>
4
/// Represents a model that specifies patterns for tables and columns to be ignored during processing.
5
/// </summary>
6
public class DatabaseMatchModel
7
{
8
    /// <summary>
9
    /// Gets or sets a list of regular expression of tables to ignore.
10
    /// </summary>
11
    /// <value>
12
    /// The list of regular expression of tables to ignore.
13
    /// </value>
14
    public List<MatchModel>? Tables { get; set; }
1✔
15

16
    /// <summary>
17
    /// Gets or sets a list of regular expression of columns to ignore.
18
    /// </summary>
19
    /// <value>
20
    /// The list of regular expression of columns to ignore.
21
    /// </value>
22
    public List<MatchModel>? Columns { get; set; }
1✔
23

24
    /// <summary>
25
    /// Gets or sets a list of regular expression of relationships to ignore.
26
    /// </summary>
27
    /// <value>
28
    /// The list of regular expression of relationships to ignore.
29
    /// </value>
UNCOV
30
    public List<MatchModel>? Relationships { get; set; }
×
31
}
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