1
我有兩個while循環,第二個有一個break; (見下面的代碼)Axapta會做什麼斷裂陳述?
我的問題是:將打破停止在第二個循環或2?
while select dirPartyRelationship
join dirPartyTable
where dirPartyTable.RecId == dirPartyRelationship.ChildParty
join dirPersonName
where dirPersonName.Person == dirPartyTable.RecId
{
while select checkDirRelationship
where checkDirRelationship.ChildParty == dirPartyRelationship.RecId
{
if (checkDirRelationship.RelationshipTypeId == _relationshipType)
{
break;
}
}...
文檔:http://msdn.microsoft.com/en-us/library/aa858014(v=ax.50).aspx –