public String SsdlFunctionSchema(Routine dbf) { return String.Format("{0}", dbf.SchemaName); }
public String SsdlFunction(Routine dbf) { return String.Format("{0}", TSimpleIdentifier(dbf.Name)); }
public String SsdlFunctionRef(Routine dbf) { return String.Format("{0}.{1}", SsdlNs(), dbf.Name); }
public String CsdlFunction(Routine dbf) { return String.Format("{0}", dbf.Name); }