When I want to compile, an error shown
use of unconstructed message
My code for expression is:
Message_2.Approved == false
XML code in scheme Article.xsd:
<xs:element name="Approved">
<xs:simpleType>
<xs:restriction base="xs:boolean" />
</xs:simpleType>
</xs:element>
Message_2 is assigned to assigned to a Send shape.
And Message Type of Message_2 is BizTalk_Server_Project7.Article .
It looks like there is something wrong with your property promotion.
You are trying to use 'Approved' as a distinguished field in your expression shape to set a value, which is perfect use of a distinguished field. Please review this tutorial on MSDN if you did everything right.