Проект

Общее

Профиль

Действия

h1. Пример моего Journal класса

public partial class tabJournal
    {
          
        public int id { get; set; }
        public int journalized_id { get; set; }
        public string type { get; set; }
        public string login { get; set; }
        public string notes { get; set; }
        public System.DateTime created_on { get; set; }
         
        public virtual ICollection Journal_details { get; set; }
    }
public partial class tabJournal_details
    {
        public int id { get; set; }
        public int journal_id { get; set; }
        public string property { get; set; }
        public string prop_key { get; set; }
        public string old_value { get; set; }
        public string value { get; set; }
    
        public virtual tabJournal Journal { get; set; }
    }

Обновлено Кужальков Павел больше 6 лет назад · 2 изменени(я, ий)