使 linq to sql 过滤模型详细信息时无法检测列标题 ID?

问题描述 投票:0回答:0

我在网络应用程序上工作

blazor with entity framework dot net core 7
.

我在专栏

HeaderId
上遇到问题在模型细节上无法识别在哪里对其进行过滤

使用

linq to sql

那么为什么以及如何解决这个问题

为什么不被认可。

检测到模型详细信息,但无法识别带有标头 ID 的过滤器并给我编译错误

它给我编译错误

Cannot convert query expression to type 'IEnumerable<RadzenGridColumn<Details>>' because it is not a delegate type

代码详情

   [HttpGet]
    public IActionResult GetAllDetailsSection()
    {
        var query = from u in _context.Details
                    where u.HeaderID = 1
                    select u;
        return Ok(query);
    }

 [Table("Details")]
    public class Details
    {
        public int ID { get; set; }
        public string DetailsName { get; set; }
        public int HeaderId { get; set; }
    }

待发图片

asp.net-core asp.net-web-api linq-to-sql linq-to-entities blazor-server-side
© www.soinside.com 2019 - 2024. All rights reserved.