File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff 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
4644internal 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 ! ;
You can’t perform that action at this time.
0 commit comments