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