5
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') { …