#if (DEBUG && !MYTEST) Console.WriteLine("DEBUG is defined"); #elif (!DEBUG && MYTEST) Console.WriteLine("MYTEST is defined"); #elif (DEBUG && MYTEST) Console.WriteLine("DEBUG and MYTEST are defined"); #else Console.WriteLine("DEBUG and MYTEST are not defined"); #endif
create sequence dbo.seq_name as [int] start with 1 increment by 1 maxvalue 999999 declare @grn_sequence_no int = next value for dbo.seq_name select format(getdate(), 'yyyyMMdd') + '-' + format(@grn_sequence_no, 'd6') 참조 자료] 날짜 및 시간 스타일 https://docs.microsoft.com/ko-kr/sql/t-sql/functions/cast-and-convert-transact-sql?view=sql-server-2017 포멧(Format) https://docs.microsoft.com/ko-kr/sql/t-sql/func..
var test1 = this.Wordbook.WordbookListT(1); var test2 = this.Wordbook.WordbookListT(1); T IWordbook.List(long memberNo) { if(typeof(T) == typeof(List)) { return (T)Convert.ChangeType(this.DoctorslDCC.Wordbook_Select_List_AtWordView(memberNo).ToList(), typeof(T)); } else if (typeof(T) == typeof(List)) { return (T)Convert.ChangeType(this.DoctorslDCC.Wordbook_Select_List_My(memberNo).ToList(), type..
ViewPage.ViewBag 속성 정의 네임스페이스:System.Web.Mvc어셈블리:System.Web.Mvc.dll패키지:Microsoft.AspNet.Mvc v5.2.6 뷰 모음을 가져옵니다. C#복사 public dynamic ViewBag { get; }속성 값Object 뷰 모음입니다. ViewPage.ViewData 속성 정의 네임스페이스:System.Web.Mvc어셈블리:System.Web.Mvc.dll패키지:Microsoft.AspNet.Mvc v5.2.6 컨트롤러와 뷰 간에 전달할 데이터가 들어 있는 사전을 가져오거나 설정합니다. C#복사 public System.Web.Mvc.ViewDataDictionary ViewData { get; set; }속성 값ViewDataDiction..
public ObjectResult ChattingRoom_Select_ChattingRoomInfo(string chattingRoomId) { return ((IObjectContextAdapter)this).ObjectContext.ExecuteStoreQuery( "dbo.[ChattingRoom_Select_ChattingRoomInfo] @ChattingRoomId", new object[] { new SqlParameter("@ChattingRoomId", chattingRoomId) } ) ?? (ObjectResult)Convert.ChangeType(new ChattingRoom_Select_ChattingRoomInfo_Result(), typeof(ObjectResult)); }
1. SignalR 설치 2. Startup.cs Class 생성 using Owin; using Microsoft.Owin; using Microsoft.AspNet.SignalR; [assembly: OwinStartup(typeof(DoctorSL.WebApp.Startup))] namespace DoctorSL.WebApp { public class Startup { public void Configuration(IAppBuilder app) { HubConfiguration hubConfiguration = new HubConfiguration() { EnableJSONP = true }; app.MapSignalR(hubConfiguration); } } } 3. SignalR Hub Clas..
- Total
- Today
- Yesterday
- 특정 문자를 기준으로 자르기
- nl2br
- jstl(java standard tag library)
- 스프링 프레임워크(spring framewordk)
- java 키워드 정리
- java-개발 환경 설정하기
- 람다식(lambda expression)
- java web-mvc
- await
- 스프링 프레임워크(spring framework)
- In App Purchase
- 표현 언어(expression language)
- System.Diagnostics
- 스프링 시큐리티(spring security)-http basic 인증
- docker
- MainActor
- .submit()
- 메이븐(maven)
- java.sql
- error-java
- 제품 등록
- React
- system.io
- REST API
- 진수 변환
- 스프링 시큐리티(spring security)
- 문자 자르기
- 인텔리제이(intellij)
- jsp 오픈 소스
- jstl(java standard tag library)-core
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |