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