コードサンプルは次のとおりです。
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
タイプが正しくない場合、コンパイルできないことがあります。
Nullable intでも同じ問題が発生しました。代わりに==を使用するとうまくいきますが、.Equalsを使用する場合は、null許容変数の値と比較できます。
where t.CustID.Value.Equals(custIdToQuery)
Nullable decimalで.Equalsを実行しようとしたときに同じ問題が発生しました。代わりに==を使用するとうまくいきます。これは、10進数の正確な「タイプ」と一致させようとしないためだと思いますか? 10進数に。
私は同じ問題に直面し、コレクションオブジェクト_"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))
_