c# – 找不到连接字符串,但仅限于设计时

嗨,我是
WPF和C#的新手,所以如果这只是一个愚蠢的问题,请对我很轻松:

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

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

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

App.Config中:

<?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错误,并尝试了各种各样的事情:

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

但到现在为止没有运气……

谢谢你的回答.

– =更新04/03/2013 = –

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

最佳答案 我遇到了同样的问题,我发现在设计时,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();
}

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

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

点赞