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') เท่านั้นที่ได้รับการสนับสนุนในบริบทนี้"

คำตอบ:


233

ใช้ == แทนเท่ากับ:

where t.CustID == custIdToQuery

หากประเภทไม่ถูกต้องคุณอาจพบว่าสิ่งนี้ไม่ได้รวบรวม


10
คุณช่วยอธิบายความแตกต่างระหว่าง "t.CustID == custIdToQuery" และ "t.CustID.Equals (custIdToQuery)" ได้ไหม ขอบคุณล่วงหน้า
Neel

2
@Neel ลองดูคำถามนี้เพื่ออธิบายความแตกต่างระหว่าง==และ.Equals(): stackoverflow.com/questions/814878/…
Alex

ตรรกะการแก้ปัญหาปี 2011 ใช้ได้ผลในปี 2018! คุ้มค่ามาก!
Yeshwant Mudholkar

29

ฉันมีปัญหาเดียวกันกับ int ที่เป็นโมฆะ การใช้ == แทนได้ผลดี แต่ถ้าคุณต้องการใช้. Equals คุณสามารถเปรียบเทียบกับค่าของตัวแปรที่เป็นโมฆะได้ดังนั้น

where t.CustID.Value.Equals(custIdToQuery)

9

ฉันมีปัญหาเดียวกันเมื่อพยายามทำ. เท่ากับทศนิยมที่เป็นโมฆะ การใช้ == แทนใช้งานได้ดี ฉันเดาว่านี่เป็นเพราะมันไม่ได้พยายามจับคู่ "ประเภท" ของทศนิยมใช่หรือไม่ เป็นทศนิยม


4
โปรดทราบว่าสิ่งนี้อยู่ในบริบทของ an IQueryableดังนั้นจึงไม่ได้รวบรวมเป็นรหัส C # ปกติ กลายเป็นนิพจน์ที่ส่งไปยังผู้ให้บริการแบบสอบถาม ผู้ให้บริการแบบสอบถามสามารถทำสิ่งที่ต้องการกับแบบสอบถามและอาจจัดการEqualsและ==เหมือนกันหรือไม่
Servy

ฉันเคย.Equal()เปรียบเทียบInt32?กับInt32. เนื่องจากInt32?ควรมีInt32และnullฉันคิดว่ามันจะใช้ได้ แต่มันไม่ได้ ==ทำงาน.
เมทริกซ์

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

1

ในกรณีของฉันฉันเปลี่ยนการโทรโดยตรงเป็นการโทร(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);
    }
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.