Example #1
0
 public SetsUnit SetAs(XDataField xf)
 {
     return(new SetsUnit(this.NameStr() + "=" + xf.CacheValue));
 }
Example #2
0
 public object GetValueInDataTable(XDataField xf, DataTable dtCache, params object[] keyValues)
 {
     return(GetValueInDataTable(xf.name, dtCache, keyValues));
 }
Example #3
0
        //其它
        public override bool Equals(object obj)
        {
            XDataField x = (XDataField)obj;

            return((this.name == x.name) && (this.value == x.value));
        }
Example #4
0
        public object GetMinKey(XDataField xf, object objWhere)
        {
            string sSql = "Select Min(" + xf.NameStr() + ") from " + this.ViewName + GetWhereStr(objWhere);

            return(this.GetValue(sSql));
        }