Home Page › Forums › BizTalk 2004 – BizTalk 2010 › passing sql stored proc param type of bit › Re: passing sql stored proc param type of bit
July 10, 2014 at 4:02 AM
#26397
You can set the datatype to xs:boolean for the element in the Schema.
And code as below:
public bool convertToBool(string param1)
{
if (param1.Equals("true")) return true;
return false;
}