在"database-first"中使用相关实体时出现问题



我正在学习MVC,为此,我正在开发一个"智能论坛"。我有一个数据库,但是我对实体有一些问题。我有这个命令

 "Scaffold-DbContext "Server=(localdb)mssqllocaldb;Database=SmartForum;Trusted_Connection=True; Microsoft.EntityFrameworkCore.SqlServer -OutputDir ModelsFromDb" ,

代码段:

modelBuilder.Entity<ArgomentiPerArea>(entity =>
            {
                entity.HasKey(e => e.ArgomentoId);
                entity.Property(e => e.ArgomentoId).HasColumnName("argomentoId");
                entity.Property(e => e.Archiviato).HasColumnName("archiviato");
                entity.Property(e => e.AreaId).HasColumnName("areaId");
                entity.Property(e => e.ModeratoreId).HasColumnName("moderatoreId");
                entity.Property(e => e.NomeArgomento).HasColumnName("nome_argomento");
                entity.Property(e => e.NumeroRigaPerArea).HasColumnName("numero_riga_per_area");
                entity.Property(e => e.TestoPerArgomento).HasColumnName("testo_per_argomento");
                entity.HasOne(d => d.Area)
                    .WithMany(p => p.ArgomentiPerArea)
                    .HasForeignKey(d => d.AreaId)
                    .HasConstraintName("FK_ArgomentiPerArea_Aree");
                entity.HasOne(d => d.Moderatore)
                    .WithMany(p => p.ArgomentiPerArea)
                    .HasForeignKey(d => d.ModeratoreId)
                    .HasConstraintName("FK_ArgomentiPerArea_Moderatori");
            });

第二个片段:

public partial class ArgomentiPerArea
    {
        public ArgomentiPerArea()
        {
            Thread = new HashSet<Thread>();
        }
        [Key]
        public int ArgomentoId { get; set; }
        public string NomeArgomento { get; set; }
        public int? AreaId { get; set; }
        public bool? Archiviato { get; set; }
        public int? NumeroRigaPerArea { get; set; }
        public string TestoPerArgomento { get; set; }
        public int? ModeratoreId { get; set; }
        public virtual Aree Area { get; set; }
        public virtual Moderatori Moderatore { get; set; }
        public virtual ICollection<Thread> Thread { get; set; }
    }
public partial class Aree
    {
        public Aree()
        {
            ArgomentiPerArea = new HashSet<ArgomentiPerArea>();
        }
        [Key]
        public int AreaId { get; set; }
        public string NomeArea { get; set; }
        public int? NumeroRiga { get; set; }
        public int? NumeroColonna { get; set; }
        public virtual ICollection<ArgomentiPerArea> ArgomentiPerArea { get; set; }
    }
public partial class Moderatori
    {
        public Moderatori()
        {
            ArgomentiPerArea = new HashSet<ArgomentiPerArea>();
            SegnalazioniPerModeratori = new HashSet<SegnalazioniPerModeratori>();
        }
        [Key]
        public int ModeratoreId { get; set; }
        public string UsernameModeratore { get; set; }
        public string PasswordHash { get; set; }
        public string NomeCognome { get; set; }
        public bool? Archiviato { get; set; }
        public virtual ICollection<ArgomentiPerArea> ArgomentiPerArea { get; set; }
        public virtual ICollection<SegnalazioniPerModeratori> SegnalazioniPerModeratori { get; set; }
    }

此代码运行

public class ArgomentiPerAreasController : Controller
    {
        private ModelsFromDb.SmartForumContext db = new ModelsFromDb.SmartForumContext();
        // GET: ArgomentiPerAreas
        public ActionResult Index()
        {
            var argomentiPerAreas = db.ArgomentiPerArea.Include(a => a.Area).Include(a => a.Moderatore);            
            string msg = "m";
            return View(argomentiPerAreas.ToList());
        }
.............
.............}

我在视图中检查," Moderatore"one_answers"区域"具有空值。 我不明白,但我首先知道数据库,并且表面上知道MVC。我希望有一些建议。

这可能是由于您的argomenti*&amp;主持人/区域。一个区域将集合回到argomenti**,因此当MVC序列化根实体(Argomenti)时,它跨过该区域,然后在该区域迭代,并收集了Argomenti*的集合,并且Co Co coce of Cycle会发生。它可以保释,并且不会尝试序列化周期性依赖性。

通常,使用EF和视图是尝试将实体发送到视图的最好的事情。而是创建一个POCO(普通的旧C#对象)视图模型发送到视图。此视图模型仅包含视图所需的字段,并且您的EF查询使用.Select()来填充该视图模型。这避免了整个环状参考问题,并否定了故意急切加载的需求(.Include())或懒惰加载的性能风险。

例如:如果我想要一个参数列表,并且我想显示每个区域和主持人作为其中的一部分:

[Serializable]
public class ArgumentiViewModel
{
    public string NomeArgomento { get; set; }
    public bool? Archiviato { get; set; }
    public int? NumeroRigaPerArea { get; set; }
    public string TestoPerArgomento { get; set; }
    public string NomeArea { get; set; } // From Area
    public string NomeCognome { get; set; } // From Moderator
}

然后,当我想将其返回到视图时:

var argomentiViewModels = db.ArgomentiPerArea
    .Select(x => new ArgomentiViewModel
    {
        NomeArgomento = x.NomeArgomento,
        Archiviato - x.Archiviato,
        NumeroRigaPerArea = x.NumeroRigaPerArea,
        TestoPerArgomento = x.TestoPerArgomento,
        NomeArea = x.Area.NomeArea, // From Area
        NomeCognome = x.Moderatori.NomeCognome // From Moderator
    }).ToList();
string msg = "m";
return View(argomentiViewModels);

我汇总了代码不应将实体返回到此处视图的两个充分原因。

相关内容

  • 没有找到相关文章

最新更新