EntitySet<TEntity>.CopyTo Method (TEntity[], Int32)
.NET Framework (current version)
Copies the EntitySet<TEntity> to an array.
Assembly: System.Data.Linq (in System.Data.Linq.dll)
Parameters
- array
-
Type:
TEntity[]
The array to copy to.
- arrayIndex
-
Type:
System.Int32
The starting index in the array.
Implements
ICollection<T>.CopyTo(T[], Int32)The following C# sample shows one use of this method:
var customer = (from c in db.Customers where c.CustomerID == "ALFKI" select c).Single(); Order[] orderArray = new Order[customer.Orders.Count];
customer.Orders.CopyTo(orderArray,0);In Visual Basic:
Dim customer = (From c In db.Customers _
Where c.CustomerID = "ALFKI" _
Select c).[Single]()
Dim orderArray As Order() = New Order(customer.Orders.Count - 1) {}
customer.Orders.CopyTo(orderArray, 0)
.NET Framework
Available since 3.5
Windows Phone Silverlight
Available since 7.1
Available since 3.5
Windows Phone Silverlight
Available since 7.1
Show: