コード例 #1
0
        public IQueryable <COURIER> GetByid(int id)
        {
            COURIERRepository rep  = new COURIERRepository(connectionString);
            List <COURIER>    list = rep.GetDataByid(id);

            return(list.AsQueryable());
        }