using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CircleScape.DAL { public partial class Session { public long Id { get; set; } [ForeignKey("User")] public int UserId { get; set; } public virtual User User { get; set; } } }