4

嗨,我对 WPF 和 C# 还很陌生,所以如果这只是一个愚蠢的问题,请不要客气:

我正在使用 VS2012,Entity Framework 来创建预先存在的数据库的模型,我想将一些表绑定到一些 ListView ......现在,我知道有不同的方法可以做到这一点,但是当我尝试使用ObjectDataProvider 我在设计时收到错误“在应用程序配置文件中找不到名为 ... 的连接字符串”。

奇怪的是,如果我运行我的应用程序一切正常,我只想删除那个丑陋的错误消息,并希望在我的列表广告设计时获取数据(这就是我想使用 objectdataprovider 的原因)。

以下是我的代码的一些部分:

应用程序配置:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <connectionStrings>
    <add name="BibliotecaEntities" 
         connectionString="metadata=res://*/Model1.csdl|res://*/Model1.ssdl|res://*/Model1.msl;provider=System.Data.SqlClient;provider connection string='data source=(LocalDB)\v11.0;attachdbfilename=&quot;G:\PROGETTI-SOFTWARE\c# tests\Biblioteca\Biblioteca\biblioteca-db.mdf&quot;;initial catalog=BibliotecaDB;integrated security=True;MultipleActiveResultSets=True;App=EntityFramework'" 
         providerName="System.Data.EntityClient" />
  </connectionStrings>
</configuration>

ListaScaffali.xaml:

<Window x:Class="Biblioteca.ShelvesList"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:local="clr-namespace:Biblioteca;assembly=" 
        Title="ShelvesList" Height="341" Width="609">

    <Window.Resources>
        <ObjectDataProvider ObjectType="{x:Type local:BooksDB_Handler}" MethodName="TuttiGliScaffali" x:Key="ScaffaliObjSrc" />
    </Window.Resources>

    <Grid>
        <Grid>
            <ListView Name="listaScaffali" ItemsSource="{Binding Source={StaticResource ScaffaliObjSrc}}">
                <ListView.View>
                    <GridView>
                        <GridViewColumn Header="Scaffali Disponibili:" DisplayMemberBinding="{Binding Scaffale}" />
                    </GridView>
                </ListView.View>
            </ListView>
        </Grid>
    </Grid>
</Window>

BooksDB-Handler.cs:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Configuration;
using System.Data.Entity;
using System.Collections.ObjectModel;

namespace Biblioteca
{
    public static class BooksDB_Handler
    {

    ...

        public static ObservableCollection<Scaffali> TuttiGliScaffali()
        {
            using (var ctx = new BibliotecaEntities())
            {

                var reader = from d in ctx.Scaffali
                             select d;
                return new ObservableCollection<Scaffali>(reader);
            }
        }

    ...

    }
}

在我的数据库中,表“Scaffali”只有两列:“ScaffaliID”(身份)和“Scaffale”。

我在某处读到这可能是 Visual Studio 错误并尝试了各种方法:

  1. 重建几次
  2. 避免 # 在路径中
  3. 编译为 32 位(我正在运行 Win8 x64)

但是直到现在还没有运气...

感谢您的友好回答。

-= 2013 年 4 月 3 日更新 =-

到目前为止,我仍然没有找到导致这种奇怪行为的条件,无论如何我发现如果我只是按顺序构建(而不是重建)两次,错误消息就会消失,一切似乎都可以正常工作......

4

3 回答 3

3

我遇到了同样的问题,我发现在设计时,IDE 似乎没有读取 App.config 来获取连接字符串,因此在建立连接时它会爆炸。我最终做的是检查代码是否在设计时并手动创建一些用于设计目的的项目。

我使用以下代码来确定环境是否处于设计模式:

public static bool IsInDesignMode
{
    get
    {
        #if Silverlight
            return !HtmlPage.IsEnabled;;
        #else
            return DesignerProperties.GetIsInDesignMode(new DependencyObject());
        #endif
    }
}

然后在我返回项目的代码中,我执行以下操作:

if (IsInDesignMode)
{
    GetSampleData();
}
else
{
    GetQueryData();
}

我只是实现了这两种方法。

可能有更好的解决方案,但这对我来说效果很好。

于 2013-02-15T21:56:50.053 回答
1

这个解决方案看起来很有希望,但我还没有让它为我工作......

资料来源:http: //developernote.com/2012/03/rich-design-time-experience-with-wpf-and-ef-in-visual-studio-2010/

有时,在设计时查看数据的能力极大地促进了 WPF 控件的创建。如果我正在使用数据绑定控件开发具有复杂 UI 的 WPF 控件,我通常会定义一个属性来访问一些典型的数据项:

public static ComplexData DesignTimeItem
{
    get
    {
        using (DatabaseContext db = new DatabaseContext())
        {
            var products = from p in db.products.Include("ProductType")
                           where p.product_id == 131
                           select p;

            product product = products.First();

            return new ComplexData(product, "100 kg");
        }
    }
}

然后我在设计时直接在 XAML 中使用这个属性:

<UserControl x:Class="SomeControl"
    ...
    xmlns:local="clr-namespace:ControlNamespace"
    DataContext="{Binding Source={x:Static local:ComplexData.DesignTimeItem}, Mode=OneWay}"
    ...
>

然后我需要做最后一步。问题是默认实体上下文构造函数(DatabaseContext)使用运行时应用程序配置文件 app.config 中包含的连接字符串:

<connectionStrings>
  <add name="MyContext" connectionString="metadata=res://*/MyModel.csdl|res://*/MyModel.ssdl|res://*/MyModel.msl;provider=MySql.Data.MySqlClient;provider connection string=&quot;password=******;User Id=myuser;server=myserver;database=mydb;Persist Security Info=True;charset=utf8&quot;" providerName="System.Data.EntityClient"/>
</connectionStrings>

但是在设计时,应用程序配置文件是devenv.exe.config,它不包含连接字符串,因此我的 WPF 控件的创建失败导致设计器无法加载。为了解决这个问题,我只需将app.config中包含的连接字符串复制到位于“C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\”中的devenv.exe.config并重新启动 Visual Studio。

于 2016-04-28T16:24:32.873 回答
0

您是否尝试过自己使用 ConnectionString 构造 DataContext 对象,而不是让框架使用配置文件中指定的对象?我通常更喜欢自己构建该对象,因此我可以轻松地将其移动到另一个程序集并注入连接依赖项。不过那是另一回事了。就您而言,我建议您尝试以下方法:

  1. 在 webconfig 中保留连接字符串。
  2. 自己构建上下文

    var connectionStringBuilder = new EntityConnectionStringBuilder { Metadata = "{metadata}", Provider = "{provider}", ProviderConnectionString = "{connection string from config}" };

    var ctx = new BibliotecaEntities(connectionStringBuilder.ToString());

我只是给个提示,你可以试试。我还没有尝试过完整的细节。希望能帮助到你。

于 2013-02-16T01:49:25.440 回答