private static CsdlNavigationPropertyPathExpression OnNavigationPropertyPathExpression(XmlElementInfo element, XmlElementValueCollection childValues) { XmlTextValue text = childValues.FirstText; return(new CsdlNavigationPropertyPathExpression(text != null ? text.TextValue : string.Empty, element.Location)); }
private static CsdlConstantExpression ConstantExpression(EdmValueKind kind, XmlElementValueCollection childValues, CsdlLocation location) { XmlTextValue text = childValues.FirstText; return(new CsdlConstantExpression(kind, text != null ? text.TextValue : string.Empty, location)); }