Ignore:
Timestamp:
08/20/24 15:04:19 (6 weeks ago)
Author:
ElenaMoskova <elena.moskova99@…>
Branches:
main
Children:
6782104
Parents:
ae6c071
Message:

fix bugs and new pages

Fix BlogPostAnswers
fix present data in the lists

File:
1 edited

Legend:

Unmodified
Added
Removed
  • PostgreSqlDotnetCore/Models/BlogPostAnswers.cs

    rae6c071 r8f8226c  
    1212        public int parent_id { get; set; }
    1313        public string reply { get; set; }
    14         public int? blogpostconsultationid { get; set; }
     14
     15        [ForeignKey("BlogPostConsultation")]
     16        [Column("blogpostconsid")]
     17        public int BlogPostConsultationid { get; set; }
     18        public BlogPostConsultation BlogPostConsultation { get; set; }
     19
    1520        public int usersid { get; set; }
    1621    }
Note: See TracChangeset for help on using the changeset viewer.