コード例 #1
0
ファイル: BOLBanners.cs プロジェクト: bidaad/ChandSanieh
    public IQueryable <vBanners> GetBannersByPositionCode(int _positionCode)
    {
        BannersDataContext dataContext = new BannersDataContext();

        return(from n in dataContext.vBanners
               .Where(n => n.PositionCode.Equals(_positionCode))
               .OrderByDescending(n => n.Code)
               select n);
    }
コード例 #2
0
ファイル: BaseBOLBanners.cs プロジェクト: bidaad/ChandSanieh
 public BaseBOLBanners()
 {
     dataContext = new BannersDataContext();
 }