Пример #1
0
 public NavigationItem(string navigationPropertyName, IElement navigationResultElement, BaseType propertyType)
 {
     this.NavigationProperty      = navigationPropertyName;
     this.NavigationResultElement = navigationResultElement;
     this.PropertyType            = propertyType;
 }
Пример #2
0
 public ScalarType(Type type, BaseType baseParent) : this(type)
 {
     this.ID           = baseParent.ID + "/" + type.FullName;
     this.ParentID     = baseParent.ID;
     this.SourceParent = baseParent;
 }
Пример #3
0
 public NavigationItem(IElement navigationProperty, IElement navigationResultElement, BaseType propertyType)
 {
     this.NavigationProperty      = navigationProperty;
     this.NavigationResultElement = navigationResultElement;
     this.PropertyType            = propertyType;
 }