Beispiel #1
0
 public Reference CreateRef(string key)
 {
     var returnVal = new Reference(this.Root);
     returnVal.ResetKey(key);
     returnVal.Ref = this.Id;
     returnVal.RefType = ReferenceType.CustomStoredProcedureColumn;
     return returnVal;
 }
Beispiel #2
0
        public override Reference CreateRef(string key)
        {
            var returnVal = new Reference(this.Root);

            returnVal.ResetKey(key);
            returnVal.Ref     = this.Id;
            returnVal.RefType = ReferenceType.FunctionColumn;
            return(returnVal);
        }
Beispiel #3
0
        public Reference CreateRef(string key)
        {
            var returnVal = new Reference(this.Root);

            returnVal.ResetKey(key);
            returnVal.Ref     = this.Id;
            returnVal.RefType = ReferenceType.Table;
            return(returnVal);
        }
        public Reference CreateRef(string key)
        {
            var returnVal = new Reference(this.Root);

            returnVal.ResetKey(key);
            returnVal.Ref     = this.Id;
            returnVal.RefType = ReferenceType.CustomAggregateColumn;
            return(returnVal);
        }