示例#1
0
        public GuardiaMensajeCollection FetchByQuery(Query qry)
        {
            GuardiaMensajeCollection coll = new GuardiaMensajeCollection();

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
示例#2
0
        public GuardiaMensajeCollection FetchAll()
        {
            GuardiaMensajeCollection coll = new GuardiaMensajeCollection();
            Query qry = new Query(GuardiaMensaje.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
示例#3
0
        public GuardiaMensajeCollection FetchByID(object Id)
        {
            GuardiaMensajeCollection coll = new GuardiaMensajeCollection().Where("id", Id).Load();

            return(coll);
        }