我正在使用 pageList (由 troy goode 制作的那个),在他的例子中,他有
// in this case we return IEnumerable<string>, but in most
// - DB situations you'll want to return IQueryable<string>
private IEnumerable<string> GetStuffFromDatabase()
{
var sampleData = new StreamReader(Server.MapPath("~/App_Data/Names.txt")).ReadToEnd();
return sampleData.Split('\n');
}
由于我使用的是我更改为的数据库IQueryable
,但是,我不知道在里面写什么来从数据库中返回数据,我尝试将路径更改为 ~/App_Data/DatabaseName.sdf 但我明白了sampleData.Split('\n');
cannot implicitly convert type string to system.linq.iqueryable<string>
我怎么能改变呢?