DevForce Help Reference
EntitySpan Class
Members 


A chained collection of EntityRelationLinks used by EntityManager.FindEntityGraph.
Syntax
'Declaration
 
<DataContractAttribute()>
Public Class EntitySpan 
'Usage
 
Dim instance As EntitySpan
[DataContract()]
public class EntitySpan 
Remarks
A single EntitySpan represents the relations among a graph of entities. You must be able to "walk" the spans without jumping or backtracking. For example, a single EntitySpan might be defined for Customer -> Order -> OrderDetails, because relationships are defined between each of these entities and navigation is straightforward. You cannot, however define a single span for Customer -> Order -> OrderDetails -> Employee, because navigation from OrderDetails to Employee is not defined. In this case two spans would be required, one for Customer -> Order -> OrderDetails, and another for Customer -> Order -> Employee.

The EntitySpan is used in retrieving an entity graph with EntityManager.FindEntityGraph

Inheritance Hierarchy

System.Object
   IdeaBlade.EntityModel.EntitySpan

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

EntitySpan Members
IdeaBlade.EntityModel Namespace

Send Feedback