我正在 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
陈述吗?还是我做错了什么?