本文介绍了使用简单实体框架复制粘贴的无效引用错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个旧数据库,我想将它的值添加到新数据库中。我用新关键字制作了2个DbContext,但它仍然给我空引用错误。



I have an old database and I want to add values from it to the new db. I made 2 DbContext with new keyword but it still gives me null reference error.

static void Main(string[] args)
{
    var newdb = new NewDbContext();
    var olddb = new OldDbContext();


    foreach (var nm in olddb.names)
    {
        newdb.Names.Add(new Name { NameId = nm.ID, Name1 = nm.name1 });

    }

    newdb.SaveChanges();
}





我的尝试:



我试过上面的那个。只是为了澄清,newdb位于一个单独的dll库中,旧的是主要的clapp。也许我需要一些app.settings?



What I have tried:

I tried the above one. And just for clarification the newdb is in a separate dll library and the old one is the main clapp. maybe I need some app.settings?

推荐答案


这篇关于使用简单实体框架复制粘贴的无效引用错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-17 07:27