以下 MVC4ef-codefirst
应用程序在我的计算机上运行良好,但在其他任何地方都没有。
两台计算机上都安装了 VS 2012 Ultimate 和 SQL Express。
两台计算机都使用此连接字符串:
<add name="DefaultConnection" connectionString="Data Source=(LocalDb)\v11.0;Initial Catalog=aspnet-AppointmentMVC4-20130118154339;
Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\aspnet-AppointmentMVC4-20130118154339.mdf"
providerName="System.Data.SqlClient" />
尝试从开发计算机以外的计算机访问数据库时:
建立与 SQL Server 的连接时发生与网络相关或特定于实例的错误。服务器未找到或无法访问。验证实例名称是否正确以及 SQL Server 是否配置为允许远程连接。(提供者:SQL 网络接口,错误:26 - 错误定位服务器/指定的实例)
工作机器有这个数据库连接:
使用localDB
或sqlexpress
作为连接无关紧要;让它成功很重要。
DbContext
班级:
public class AppointmentContext : DbContext
{
public DbSet<Appointment> Appointments { get; set; }
public DbSet<User> Users { get; set; }
}