我正在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
陈述吗?或者我做错了什么?
答案 0 :(得分:0)