Ejemplo n.º 1
0
 protected override bool ReadAnAttribute(System.Xml.XmlReader reader, XmlReaderContext context)
 {
     if (this.IsAttributeMatch(XmlHelper.CheckExists, reader, context))
     {
         this.CheckExists = XmlHelper.ParseEnum <DBExistState>(reader.Value);
         return(true);
     }
     else
     {
         return(base.ReadAnAttribute(reader, context));
     }
 }
Ejemplo n.º 2
0
 public DBCreateQuery()
     : base()
 {
     this.CheckExists = DBExistState.Unknown;
 }
Ejemplo n.º 3
0
 public DBUpdateTable()
     : base()
 {
     this.CheckExists = DBExistState.Unknown;
 }