gpt4 book ai didi

asp.net-mvc - 如何将此 IQueryable 转换为 DbSet

转载 作者:行者123 更新时间:2023-12-02 16:14:50 26 4
gpt4 key购买 nike

这应该很简单,但我在 IF block 内的线路上被绊倒了。该行的错误是

"Cannot implicitly convert type 'System.Linq.IQueryable[Patient]' to 'System.Data.Entity.DbSet[Patient]'. An explicit conversion exists (are you missing a cast?)"

我尝试在 之后附加各种扩展名(AsQueryable()ToList()AsEnumerable() 等) .Contains() 无济于事。

我在这里缺少什么?该项目是使用 MVC 4 Beta 和 EF4 构建的

public ActionResult SearchIndex(string searchString)
{
var patients = this.db.Patients;

if (!String.IsNullOrEmpty(searchString))
{
patients = patients.Where(p => p.LastName.Contains(searchString));
}

return View(patients.ToList());

}

最佳答案

将患者明确声明为 IQueryable<Patient>

IQueryable<Patient> patients = this.db.Patients;

或调用AsQueryable关于它:

var patients = this.db.Patients.AsQueryable();

关于asp.net-mvc - 如何将此 IQueryable<Patient> 转换为 DbSet<Patient> ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10519008/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com