using Microsoft.EntityFrameworkCore; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace AsbCloudDb.Model { [Table("t_well_operation_category"), Comment("Справочник операций на скважине")] public class WellOperationCategory { [Key] [Column("id")] public int Id { get; set; } [Column("name"), Comment("Название категории операции")] public string Name { get; set; } [Column("code"), Comment("Код операции")] public int Code { get; set; } [InverseProperty(nameof(TelemetryAnalysis.Operation))] public virtual ICollection Analysis { get; set; } } }