Example #1
0
 /// <summary>
 /// Visit a CollectionPropertyAccessNode
 /// </summary>
 /// <param name="nodeIn">the node to visit</param>
 /// <returns>Defined by the implementer</returns>
 public virtual T Visit(CollectionPropertyAccessNode nodeIn)
 {
     throw new NotImplementedException();
 }
Example #2
0
 private string BindCollectionPropertyAccessNode(CollectionPropertyAccessNode collectionPropertyAccessNode)
 {
     return(Bind(collectionPropertyAccessNode.Source) + "." + collectionPropertyAccessNode.Property.Name);
 }