在Visual Studio '12中使用WebMatrix数据库帮助程序是否需要执行“特殊”操作?

时间:2012-10-26 04:30:14

标签: database razor visual-studio-2012 webmatrix-2

我正在WebMatrix中进行一些基本的数据库查询。

类似的东西,

@{
  var db = Database.Open("test"); //test is the name of my database
  var selectQuery = "SELECT * FROM MY_CUSTOM_TABLE"
}

//Doing a `@foreach` and showing the items from the table

当我在Visual Studio中做同样的事情时,

我在Connection String not found收到错误var db = Database.Open("test");

我错过了一些using陈述吗?或者我做错了什么?

1 个答案:

答案 0 :(得分:0)

第一个问题是,

我没有在web.config中定义连接字符串。

我做到了,它给了我一个Instance Error

这需要一段时间来解决奇怪的逃避序列行为的原因。 This帮助了我。