我想在WPF窗口中訪問我的DbContext類型的一些靜態屬性。我以爲我可以使用,我用它來指個人實體相同XAML:爲什麼我不能使用我的DbContext類型?
<Window.Resources>
<entity:Account x:Key="account"/> //Works fine
<entity:MyEntities x:Key="myEntities"/> //Throws an error!
</Window.Resources>
我得到這個錯誤:
No connection string named 'MyEntities' could be found in the application config file.
爲什麼治療的DbContext類型(MyEntities)不同於帳戶實體?有沒有簡單的方法可以訪問我的MyEntities類型的靜態屬性?
聽起來就像你在你的WPF app.config中缺少MyEntities的連接字符串。 –
錯誤消息非常明確。看起來在你的應用程序配置文件中,你沒有一個名爲'MyEntities'的連接字符串! – DavidG
我其實有一個連接字符串(我有三個!)。沒有那一行,我的應用程序運行得很好。 –