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