일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- aspnet
- Excel
- windows
- 비주얼스튜디오
- SSRS
- 단축키
- MSSQL
- 리포팅서비스
- ASP
- Winform
- replace()
- microsoft
- c#
- CONVERT()
- 윈도우
- javascript
- attr()
- 자바스크립트
- oracle
- 이클립스
- jQuery
- DataGrid
- 오라클
- 엑셀
- 윈폼
- 마이크로소프트
- 프로시저
- IIS
- 태그를 입력해 주세요.
- MS
Archives
- Today
- Total
DJ메탈짱™의 Free Style
[C#] LINQ to SQL(Sum) 본문
// 2011/07/13 - LINQ query (SUM)
var tSum =
from p in db.TBSimulation // from절y
where p.USERID == this.hdUSERID.Text
&& p.GROUPID == "A" // where절y
select p.RESULT; // select절y
// Total Profit
this.lblTPROFIT.Text = tSum.Sum().ToString();
'일(job) > MS(Microsoft)' 카테고리의 다른 글
[ASP.NET] HTTP 오류 500.21 - Internal Server Error (0) | 2015.12.08 |
---|---|
[C#] HTML 태그 제거하기 (0) | 2015.12.08 |
[ASP.NET] LINQ to SQL(group by, sum) (0) | 2015.12.04 |
[ASP.NET] Textbox 배경색 code-behind에서 변경하는 방법 (0) | 2015.12.04 |
[ASP.NET] DataGrid 안에 라디오버튼 한개만 선택하게 (0) | 2015.12.04 |