Linq 쿼리는 "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, 문자열 및 GUID와 같이')이 문맥에서 지원됩니다."

답변:


232

Equals 대신 == 사용 :

where t.CustID == custIdToQuery

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


10
"t.CustID == custIdToQuery"와 "t.CustID.Equals (custIdToQuery)"의 차이점을 설명해 주시겠습니까? 미리 감사드립니다
Neel 2011 년

2
@Neel ==과 (와) 의 차이점에 대한 설명은이 질문을 참조하십시오 .Equals(). stackoverflow.com/questions/814878/…
Alex

2011 년 솔루션 로직은 2018 년에 효과가있었습니다! 굉장한 가치!
Yeshwant Mudholkar 2011

29

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

where t.CustID.Value.Equals(custIdToQuery)

9

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


4
이는의 컨텍스트에 IQueryable있으므로 일반 C # 코드로 컴파일되지 않습니다. 쿼리 공급자에게 전달되는식이됩니다. 즉, 쿼리 공급자는 쿼리를 원하는 무엇이든 할 수 있고, 처리 할 수 Equals==동일하거나 없습니다.
Servy

내가 사용하는 .Equal()비교 Int32?와 함께 Int32. 및 Int32?을 포함해야 하므로 작동 할 것이라고 생각했습니다. 하지만 그렇지 않았습니다. 일했다. Int32null==
행렬

1

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

이것은 다른 문제입니다. 당신은 사과와 오렌지를 비교하고 있습니다.
Lasse V. Karlsen

어떻게 다른지. 나는 같은 문제에 직면했다. 나는 단지 다른 사람들을 위해 참조 용 으로이 답변을 게시합니다.
Satish Kumar sonker

0

제 경우 (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);
    }
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.