System.Linq.IQueryable<CustomerProfile> query =
from usr in context.customer_profiles
where usr.cust_email == LoginID
select new CustomerProfile
{
NAME = usr.cust_name,
CONTACT = usr.cust_contact,
EMAILID = usr.cust_email,
LOCATION = usr.cust_location,
SERVICELOCATION=usr.cust_service_location,
FAXNO=usr.cust_fax_no,
FIRMNAME = usr.cust_firm_name,
FIRMADDRESS = usr.cust_firm_address,
DATEESTABLISHED = Convert.ToDateTime(((DateTime?)usr.date_of_established)),
SIGNATURE = usr.cust_signature,
LOGO = usr.logo,
};
On the next line, I get a message that "the specified cast is invalid." How can i fix this?
return query.ToList().FirstOrDefault();
source
share