I got this compiler error:
Cannot implicitly convert type ‘bool?’ to ‘bool’. An explicit
conversion exists (are you missing a cast?).
for the following code:
xEnable = was.xEnable;
xEnable is a nullable column in DB.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This means that
and
do something like
where false is the default value in case was.xEnable == null
EDIT
Or if you really want you can user the ?? operator like
or