첫화면에 프로파티null오류날때

최현우·2023년 1월 31일
0

simple Tip(ASP.NET)

목록 보기
20/31
post-thumbnail

ProcReasonData = conn.Query<타입>(sql.ToString(), new { 파라미터 }, null, true, TimeOut).FirstOrDefault() ?? new 타입();

또는

ProcReasonData = conn.Query(sql.ToString(), new { 파라미터 }, null, true, TimeOut).FirstOrDefault();

ProcReasonData ??== new ODA_T_ProcReason;

첫화면에 프로파티null오류날때, 테이블에서 가져온거 null이여서 못쓸때 새로 new로 비워주면된다.

profile
세상에서 가장 귀여운건 == 윤호 ? True : False 언제나 True❤️

0개의 댓글