Dynamicweb 8 Documentation
Load Method (OrderLineCollection)
Example 

The SQL query.
The order.
Loads the specified order lines.
Syntax
'Declaration
 
Public Sub Load( _ 
   ByVal sql As String, _ 
   ByVal Order As Order _ 
) 
public void Load( 
   string sql,
   Order Order 
)

Parameters

sql
The SQL query.
Order
The order.
Example
public static OrderLineCollection GetOrderLineCollection( Order order)
{
   	OrderLineCollection col = new OrderLineCollection();
   	string sql = String.Format("SELECT * FROM EcomOrderLines WHERE OrderLineOrderID = '{0}' ORDER BY OrderLineID, OrderLineParentLineID", order.ID);

   	col.Load(sql, order);
   	return col;
}
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

OrderLineCollection Class
OrderLineCollection Members

Send Feedback