0

我正在 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 foundvar db = Database.Open("test");.

我错过了一些using陈述吗?还是我做错了什么?

4

1 回答 1

0

第一个问题是,

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

我这样做了,它给了我一个Instance Error.

这需要一段时间才能解决奇怪的转义序列行为的原因。对我有帮助。

于 2012-10-26T15:31:49.623 回答