あなたの元のステートメントは間違っているようです:
// if objectives is not null OR it is not null and is equal to <br/>
(Model.Objectives != null || Model.Objectives.ToString() =="<br/>")
する必要はありませんModel.Objectives = "<br/>"
。とにかく呼び出されることはありません。"<br/>" != null
// if objectives is not null
(Model.Objectives != null)
私はあなたがこのようなものが欲しいと思います:
// if objectives isn't null AND it is not <br/>
(Model.Objectives != null && Model.Objectives.ToString() =="<br/>")
また
// if objectives is null OR objectives is <br/>
(Model.Objectives == null || Model.Objectives.ToString() =="<br/>")