Imports <xmlns:o="http://schemas.devleap.com/Orders">
' ...

Dim xmlOrders As XDocument = XDocument.Load("Orders.xml")
Dim orders = _
	From o In xmlOrders.<o:orders>.<o:order> _
	Select New Order With {
		.CustomerID = o.@idCustomer, _
		.Product = New Product With {
			.IdProduct = o.@idProduct,
			.Price = o.@price}, _
		.Quantity = o.@quantity}
