While building an xml document I require to use logic to dictate the outcome of the xml; logically it is similar to the following piece of code (although this does not work):

    Dim buildElement As Boolean = True
    Dim xe As XElement = _
    <xml>
        <% If buildElement Then %>
        <BuildMyElement><%= buildElement.ToString %></BuildMyElement>
        <% End If %>
    </xml>

I have managed to do this using the method show below, is this the suggested way of doing this or is there a better one??

    Dim buildElement As Boolean = True
    Dim xe As XElement = _
    <xml>
        <%= If(buildElement, _
            <BuildMyElement><%= buildElement.ToString %></BuildMyElement>, _
            Nothing) %>
    </xml>
link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

when you use the If clause in one line you have 2 overload that are:

 IF(condition, true, false) 

or

 If(Condition,False)

You could write something like this to avoid assigning nothing value:

If(buildElement is nothing,<BuildMyElement><%= buildElement.ToString %></BuildMyElement>)
link|improve this answer
1  
Tried that with a nullable boolean but because the two data types are different it produces a conversion error. – baileyswalk Feb 28 '11 at 13:51
Ok so You have to use your first approach is not a bad solution :) – JAiro Feb 28 '11 at 13:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.