Linq Query keeps throwing "Unable to create a constant value of type System.Object....", Why?

C#.NetWinformsLinqEntity Framework

C# Problem Overview


The following is the code sample:

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();
        }
    }

i am unable to understand what am i doing wrong. I keep getting "Unable to create a constant value of type 'System.Object'. Only primitive types ('such as Int32, String, and Guid') are supported in this context."

C# Solutions


Solution 1 - C#

Use == instead of Equals:

where t.CustID == custIdToQuery

If the types are incorrect you may find that this doesn't compile.

Solution 2 - C#

I had the same issue with a nullable int. Using == instead works nicely, but if you want to use .Equals, you can compare it to the value of the nullable variable, so

where t.CustID.Value.Equals(custIdToQuery)

Solution 3 - C#

I had the same issue when I was trying to do .Equals with a nullable decimal. Using == instead works nicely. I guess this is because it's not trying to match the exact "type" of decimal? to decimal.

Solution 4 - C#

I was faced the same issue and i was comparing Collection Object "User" with integer data type "userid" (x.User.Equals(userid))

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

and correct Query is x.UserId.Equals(userid)

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

Solution 5 - C#

In my case, I changed the direct call of (sender as Button).Text to indirect call using a temp var, has worked. working code:

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);
    }

buggy code:

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);
    }

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionNeelView Question on Stackoverflow
Solution 1 - C#Mark ByersView Answer on Stackoverflow
Solution 2 - C#kloarubeekView Answer on Stackoverflow
Solution 3 - C#Dave StuartView Answer on Stackoverflow
Solution 4 - C#Satish Kumar sonkerView Answer on Stackoverflow
Solution 5 - C#vaheedsView Answer on Stackoverflow