1. ホーム
  2. c#

[解決済み] Linq Queryで "Unable to create constant value of type System.Object... "と表示されることがあるのですが、なぜですか?

2023-01-22 14:59:51

質問

以下はコード例です。

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など)だけがサポートされています。

どのように解決するのですか?

Equalsの代わりに==を使用します。

where t.CustID == custIdToQuery

型が正しくない場合、コンパイルできないことがあります。