Linq Query不断抛出“无法创建类型为System.Object…的常量值”,为什么?


94

以下是代码示例:

private void loadCustomer(int custIdToQuery) 
    {
        var dbContext = new SampleDB();
        try
        {
            var customerContext = from t in dbContext.tblCustomers      // keeps throwing:
                                   where t.CustID.Equals(custIdToQuery) // Unable to create a constant value of type 'System.Object'. 
                                   select new                           // Only primitive types ('such as Int32, String, and Guid') 
                                   {                                    // are supported in this context.
                                       branchId = t.CustomerBranchID,   //
                                       branchName = t.BranchName        //
                                   };                                   //

            if (customerContext.ToList().Count() < 1) //Already Tried customerContext.Any()
            {
                lstbCustomers.DataSource = customerContext;
                lstbCustomers.DisplayMember = "branchName";
                lstbCustomers.ValueMember = "branchId";
            }
            else
            {
                lstbCustomers.Items.Add("There are no branches defined for the selected customer.");
                lstbCustomers.Refresh();
            }
        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.Message);
        }
        finally
        {
            dbContext.Dispose();
        }
    }

我无法理解我在做什么错。我不断收到“无法创建类型为'System.Object'的常量值。在这种情况下,仅支持原始类型(例如Int32,String和Guid')。”

Answers:


232

使用==代替等于:

where t.CustID == custIdToQuery

如果类型不正确,您可能会发现它无法编译。


10
您能否解释一下“ t.CustID == custIdToQuery”和“ t.CustID.Equals(custIdToQuery)”之间的区别。在此先感谢
Neel

2
@Neel在这个问题看看的解释上的区别==.Equals()stackoverflow.com/questions/814878/...
亚历

2011年的解决方案逻辑在2018年有效!棒极了!
Yeshwant Mudholkar

29

我有一个与nullable int相同的问题。使用==可以很好地工作,但是如果要使用.Equals,可以将其与可为空的变量的值进行比较,因此

where t.CustID.Value.Equals(custIdToQuery)

9

尝试执行操作时遇到了同样的问题。等于可以为空的小数。使用==可以很好地工作。我猜这是因为它不试图匹配十进制的确切“类型”?到小数点。


4
请记住,这是在的上下文中IQueryable,因此不会将其编译为常规C#代码。它成为传递给查询提供程序的表达式。该查询供应商可以做任何与查询想要的,并且它可以处理Equals==相同与否。
Servy

我以前.Equal()比较Int32?Int32。既然Int32?应该包含Int32null,我认为它将起作用。但事实并非如此。==工作了。
矩阵

1

我遇到了同样的问题,我正在比较集合对象"User"与整数数据类型"userid"x.User.Equals(userid)

from user in myshop.UserPermissions.Where(x => x.IsDeleted == false && x.User.Equals(userid))

正确的查询是 x.UserId.Equals(userid)

from user in myshop.UserPermissions.Where(x => x.IsDeleted == false && x.UserId.Equals(userid))

这是一个不同的问题,您正在比较苹果和橙子。
Lasse V. Karlsen

有什么不同。虽然我也遇到过同样的问题。我只是将此答案发布,仅供其他人参考。
Satish Kumar sonker

0

就我而言,我(sender as Button).Text使用temp var 将直接调用从更改为间接调用起作用了。工作代码:

private void onTopAccBtnClick(object sender, EventArgs e)
    {
        var name = (sender as Button).Text;
        accountBindingSource.Position =
                    accountBindingSource.IndexOf(_dataService.Db.Accounts.First(ac => ac.AccountName == name));
        accountBindingSource_CurrentChanged(sender, e);
    }

越野车代码:

private void onTopAccBtnClick(object sender, EventArgs e)
    {
        accountBindingSource.Position =
                    accountBindingSource.IndexOf(_dataService.Db.Accounts.First(ac => ac.AccountName == (sender as Button).Text));
        accountBindingSource_CurrentChanged(sender, e);
    }
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.