コード例 #1
0
ファイル: SysBarrioController.cs プロジェクト: luchito76/ris
        public SysBarrioCollection FetchAll()
        {
            SysBarrioCollection coll = new SysBarrioCollection();
            Query qry = new Query(SysBarrio.Schema);

            coll.LoadAndCloseReader(qry.ExecuteReader());
            return(coll);
        }
コード例 #2
0
ファイル: SysBarrioController.cs プロジェクト: luchito76/ris
        public SysBarrioCollection FetchByID(object IdBarrio)
        {
            SysBarrioCollection coll = new SysBarrioCollection().Where("idBarrio", IdBarrio).Load();

            return(coll);
        }