0

我有一个 mvc 3 项目,我需要使用 xml 文件中的数据填充 sql 数据库。因此,我将控制台应用程序项目添加到解决方案中,并编写了将在屏幕上显示所有需要的数据的代码。现在我想将数据写入数据库。这是代码块:(来自控制台应用程序)

    public static void Main()
    {
        IKernel ninjectKernel = new StandardKernel();
        ninjectKernel.Bind<IItemsRepository>().To<ItemsRepository>();
        ninjectKernel.Bind<IProductRepository>().To<ProductRepository>();
        ninjectKernel.Bind<IShippingRepository>().To<ShippingRepository>();

        var itemsRepository = ninjectKernel.Get<IItemsRepository>(); // redirection to datacontext file
        var productRepository = ninjectKernel.Get<IProductRepository>();
        var shippingRepository = ninjectKernel.Get<IShippingRepository>();

        var doc = XDocument.Load(@"C:\div_kid.xml");
        var offers = doc.Descendants("offer");

        foreach (var offer in offers)
        {   // here I use Linq to XML to get all needed data from xml file: 
            // name, description, price, category, shippingCost, shippingDetails

            Product product = productRepository.CreateProduct(name, description, price, category, "Not Specified", "Not Specified");
            Shipping shipping = shippingRepository.CreateShipping(shippingCost, shippingDetails);

            // here I think I will just create "admin" user and assign its "UserId" to "userId"
            Guid? userId = null;
            Item item = itemsRepository.CreateItem(product.ProductId, shipping.ShippingId, (Guid) userId, DateTime.Now);

            // Resharper highlights this line like unreachable. Why?
            Console.WriteLine("name: {0}", offer.Element("name").Value);
        }
    }

首先,当我运行控制台应用程序时,NullReferenceException 发生在 MvcProjectName.Designer.cs 文件的以下行中:

public WebStoreDataContext() : 
    base(global::System.Configuration.ConfigurationManager.ConnectionStrings["WebStoreConnectionString"].ConnectionString, mappingSource)                    

NullReferenceException:对对象的引用未指向对象实例。

所以,我有很多问题:

1) 如何将控制台应用程序代码与 mvc 3 应用程序代码集成到一个解决方案中?

2)我还在stackoverflow上找到了这篇文章。但是我不能在 ConsoleProject 的引用中添加对 MvcProject 的引用吗?并且通过这种方式可以访问“mvc 存储库”代码?

3)我应该在控制台应用程序中使用 ninject 容器吗?

4) 将数据从 xml 文件加载到 slq 数据库中是否有更好的实现?我以前从来没有在一个解决方案中有两个项目,所以mabby还有其他方法可以很好地处理这种情况吗?

提前感谢您的帮助!

编辑:

我添加了带有连接字符串的 app.config 文件:

<add
    name="WebStoreConnectionString" connectionString="Data Source=(LocalDB)\v11.0;
     AttachDbFilename=|DataDirectory|\WebStore.mdf;Integrated Security=True;Connect Timeout=30"
  providerName="System.Data.SqlClient"
/>

现在,当我运行控制台应用程序时,当调用 Linq to SQL“.submitChanges()”方法时,我得到以下 SqlException:

尝试为文件 C:\Users\Aleksey\repos\working_copy\WebStore\LoadDataTool\bin\Debug\WebStore.mdf 附加自动命名数据库失败。存在同名数据库,或无法打开指定文件,或位于 UNC 共享上。

同样在目录 LoadDataTool\bin\Debug 中出现了扩展名为“Program Debug Database”的“WebStore”文件。

4

2 回答 2

1

很难对您的解决方案架构做出准确的假设,但从我所阅读的内容来看,听起来您并没有将数据访问层(DAL) 与表示层 (MVC) 分开——这似乎就是为什么您正在尝试在控制台应用程序中引用它。

有了这个假设,这就是我将如何回答您的问题。

  1. 我不会……但如果我要去的话,我是 1) 确保我拥有所有必需的参考资料,2) 验证 app.config 文件是否已正确设置并指向正确的数据库和服务器。
  2. 我会将您的存储库分离到不同的项目中,并使用依赖解析器将它们注入您的 MVC 应用程序。这样,控制台应用程序将只需要引用 DAL 程序集 - 因此不需要控制台应用程序中的所有引用。
  3. 如果您认为您将来会退出 DAL,那么是的。(**参见#2 建议)。
  4. 除非您无法在没有创建 XML 文件和数据库的情况下运行您的解决方案,否则更好的解决方案是简单地创建一个管理控制器和操作,允许您上传 XML 文件并完成任务。

我希望这会有所帮助。

更新

对于你的问题

尝试为文件附加自动命名的数据库

更改您的连接字符串,使其看起来像;

Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\WebStore.mdf;

连接字符串的一个很好的来源是: http: //www.connectionstrings.com/

于 2013-01-28T15:04:34.793 回答
1

我猜您需要在App.config控制台应用程序使用的文件中定义一个连接字符串(与您在 web.config 中使用它的方式相同):

<connectionStrings>
    <add 
        name="WebStoreConnectionString" 
        connectionString="YOUR CONNECTION STRING COMES HERE" 
        providerName="System.Data.SqlClient"
    />
</connectionStrings>
于 2013-01-28T14:46:58.970 回答