Skip to content

Commit 61b8ca8

Browse files
fix linter
1 parent 2299166 commit 61b8ca8

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

examples/src/EF/Program.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,21 +36,17 @@ internal class Blog
3636
{
3737
public int BlogId { get; init; }
3838

39-
// ReSharper disable once EntityFramework.ModelValidation.UnlimitedStringLength
4039
public string Url { get; set; } = string.Empty;
4140

42-
// ReSharper disable once CollectionNeverQueried.Global
4341
public List<Post> Posts { get; init; } = [];
4442
}
4543

4644
internal class Post
4745
{
4846
public int PostId { get; init; }
4947

50-
// ReSharper disable once EntityFramework.ModelValidation.UnlimitedStringLength
5148
public string Title { get; init; } = string.Empty;
5249

53-
// ReSharper disable once EntityFramework.ModelValidation.UnlimitedStringLength
5450
public string Content { get; init; } = string.Empty;
5551

5652
public Blog Blog { get; init; } = null!;

0 commit comments

Comments
 (0)