Dynamicweb 8 Documentation
GetEmptyOrderDataSet Method
Example 

Gets an empty DataSet with the schema from the database.
Syntax
'Declaration
 
Public Shared Function GetEmptyOrderDataSet() As DataSet
public static DataSet GetEmptyOrderDataSet()
Example
class MyPage : System.Web.UI.Page
{
   private bool FieldExists(string checkName)
   {
       bool returnBool = false;

       DataSet ds = Dynamicweb.eCommerce.Orders.Order.GetEmptyOrderDataSet();
       foreach (DataColumn dc in ds.Tables[0].Columns)
       {
           if (checkName == dc.ColumnName)
           {
               returnBool = true;
           }
       }
       return returnBool;
   }
}
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

Order Class
Order Members

Send Feedback