/// <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(); }
private string BindCollectionPropertyAccessNode(CollectionPropertyAccessNode collectionPropertyAccessNode) { return(Bind(collectionPropertyAccessNode.Source) + "." + collectionPropertyAccessNode.Property.Name); }