본문 바로가기

분류 전체보기141

entity framework '소스 형식 DbSet<Table>에 구현된 쿼리 패턴을 찾을 수 없습니다.' 'Select'을(를) 찾을 수 없습니다. entity framework 기반으로 db의 특정 테이블을 조회하기 위해 아래 코드를 추가, 소스 형식 DbSet에 구현된 쿼리 패턴을 찾을 수 없습니다.' 'Select'을(를) 찾을 수 없습니다. #CS1936 오류가 발생한다. 해결법은 간단하다. Table을 DbSet으로 받았으므로 Linq가 필요하다. using System.Linq; 2021. 6. 10.
MySQL WorkBench에서 사용관련 정리 Schedule Event 조회 select * from information_schema.events; Schedule Event 활성화 여부 확인 show variables like 'event%'; set global event_scheduler=ON; #event_scheduler 사용 set global event_scheduler=OFF; #event_scheduler 사용안함 참조 게시물 link https://pinokio0702.tistory.com/85 2021. 6. 3.
MySQL WorkBench Configuration file 경로 Location of MySQL Configuration file 경로 C:\ProgramData\MySQL\MySQL Server 8.0\my.ini 2021. 5. 31.
C# WinForm 동적으로 생성한 Control 접근하는 방법 C# WinForm에서 동적으로 Controls(Button, Label, ,,,)을 생성 후 작업 중 생성한 Control에 접근하는 방법을 메모해 둔다. 우선 Button을 동적으로 생성해 보자. Button btnTest = new Button(); btnTest.Name = "btnTest"; //Controls 에서 조회키가 되므로 Naming에 신경쓰자. btnTest.Text = "Test"; btnTest.Size = new System.Drawing.Size(100, 30); btnTest.Location = new System.Drawing.Point(50, 50); btnTest.Click += new System.EventHandler(btnTest_Click); this.Contr.. 2021. 5. 13.