[c#] Linq 쿼리는 “System.Object 유형의 상수 값을 만들 수 없습니다…”를 계속 던집니다. 이유는 무엇입니까?

다음은 코드 샘플입니다.

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, 문자열 및 GUID와 같이’)이 문맥에서 지원됩니다.”



답변

Equals 대신 == 사용 :

where t.CustID == custIdToQuery

유형이 올바르지 않으면 컴파일되지 않을 수 있습니다.


답변

nullable int와 동일한 문제가 발생했습니다. 대신 ==를 사용하면 잘 작동하지만 .Equals를 사용하려면 nullable 변수의 값과 비교할 수 있으므로

where t.CustID.Value.Equals(custIdToQuery)


답변

nullable 십진수로 .Equals를 수행하려고 할 때 동일한 문제가 발생했습니다. 대신 ==를 사용하면 잘 작동합니다. 나는 이것이 십진수의 정확한 “유형”을 일치 시키려고하지 않기 때문이라고 생각한다. 십진수로.


답변

나는 같은 문제에 직면했고 Collection Object "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))


답변

제 경우 (sender as Button).Text에는 임시 변수를 사용하여 직접 호출 을 간접 호출로 변경 했습니다. 작동 코드 :

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


답변