- 試圖先使用Microsoft SQL Server Managment Server創建數據庫。我無法使用當前的憑據來創建導致錯誤的新數據庫。這是通過使用我的管理員憑據解決的。
- 將該應用程序作爲空白項目啓動,但使用的是網頁表單。
- 應用程序啓動時沒有任何東西會建議實體創建數據庫。
已驗證SQL Express正在運行。實體框架未創建數據庫或表
- 在VS我能夠連接到服務器並查看我在SQL Server對象資源管理器數據庫,但是查看服務器資源管理器會顯示我的連接名稱和數據庫將有一個紅色的X。
- 在服務器資源管理器中的VS中,我可以在服務器名稱下鍵入。\ SQLEXPRESS並查看系統數據庫,但在連接到數據庫時看不到我的cfsEnergy DB>選擇或輸入數據庫名稱。
使用Visual Studio 2015年
- 試圖在我的用戶名和管理員帳戶添加到什麼,我相信是使用下面的腳本中的SQL Express組:https://gist.githubusercontent.com/wadewegner/1677788/raw/16862d429feaa5d2d799533c548632365a2f04ff/addselftosqlsysadmin.cmd
/App_Code文件/部門。 CS
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace cfsEnergyManagement.App_Code
{
public class department
{
public string ID { get; set; }
public string title { get; set; }
public List<utilityUse> utilityUse { get; set; }
}
}
/App_code/utilityUse.cs
個using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace cfsEnergyManagement.App_Code
{
public class utilityUse
{
public string utilityID { get; set; }
public string title { get; set; }
public string year { get; set; }
public string month { get; set; }
public int kiloWattHour { get; set; }
public int tonHour { get; set; }
public int kiloPoundsHour { get; set; }
public int netCost { get; set; }
}
}
/App_Code/dbContext.cs
using System;
using System.Collections.Generic;
using System.Data.Entity;
using System.Linq;
using System.Web;
namespace cfsEnergyManagement.App_Code
{
public class cfsEnergyDb: DbContext
{
public DbSet<department> departments { get; set; }
public DbSet<utilityUse> utilityUses { get; set; }
}
}
dbContextRun.cs
namespace cfsEnergyManagement.App_Code
{
public class dbContextRun
{
cfsEnergyDb CfsEnergyDb = new cfsEnergyDb();
}
}
連接字符串:web.config中
<connectionStrings>
<add name="cfsEnergyDb" connectionString="server=SQLEXPRESS;integrated security=SSPI;database=cfsEnergy" providerName="System.Data.SqlClient" />
</connectionStrings>
你有任何實際實例化你的上下文的代碼嗎?如果它從來沒有實例化,我認爲它不會做太多... – oerkelens
我有另一個名爲dbContextRun.cs的類,但什麼都不做:public class dbContextRun { cfsEnergyDb CfsEnergyDb = new cfsEnergyDb(); } –
而且我假設你實際上是_executing_代碼莫名其妙?在應用程序中是否有Main()或其他入口點?或者你正在建立一個圖書館,它不能也不會真正自行運行? – oerkelens