top of page
검색
2023년 12월 31일1분 분량
비주얼 스튜디오 (Visual Studio)에서 1초만에 JSON을 클래스화 하는 방법
웹 API 데이터 호출시에 대부분 JSON 문자열을 클래스화 해야 하는 경우가 많습니다. 대부분 API 문서를 보고 JSON 포맷을 클래스화하는 것을 수동으로 코딩을 하는 경우가 많죠. 비주얼 스튜디오 (Visual Studio)를...
조회수 4회
2023년 3월 28일1분 분량
Entity Framework : The Fastest Way to Insert Large Amount of Data - C# & .NET
Entity Framework is very useful when dealing with many data classes. I am finding that when dealing with a large amount of records,...
조회수 7회
2023년 3월 8일1분 분량
Static Method Using "this" - C# & .NET
This is one of my favorite coding method. If used properly, it can make your coding life much easier. Using "this", you can create a...
조회수 0회
2023년 3월 5일1분 분량
Entity Framework Core - Entity Change (엔티티 체인지 하기) - C# & .NET
엔티티 프레임워크 (Entity Framework, 또는 EF)에서 데이터 베이스에 있는 테이블을 불러오는 건 당연히 쉽죠. 그렇지만 테이블의 칼럼들이 너무 많고 앱에서는 다 필요가 없을 시에는 어떻게 할까요? 원래는 다 가지고 오면 좋은...
조회수 1회
2023년 2월 25일1분 분량
Easy Guide to AutoMapper (Simple Class Converter) - C# & .NET
While you are creating numerous classes during development, there are numerous cases where you have to convert from one to another...
조회수 5회
2023년 2월 19일1분 분량
this... Static Method (this 정적 메소드) - C# & .NET
제가 아주 즐겨 쓰는 기능입니다. 잘 쓰면 코딩이 아주 편리해 지죠. this를 이용하여 static 메소드를 사용할 수 있습니다. 만약에 내가 byte 타입의 변수에 파일을 생성하는 코드를 자주 쓴다고 하면 일일이 매번 컨버젼 코드를 쓸...
조회수 5회
2023년 2월 5일2분 분량
Entity Framework Core - Best Practices (모범사례) - C# & .NET
.NET을 하시는 분들이면 Entity Framework을 쓰시죠. ADO.NET 에서 EF Core (Entity Framework Core)로 넘어온 지 오랜 세월이 지났지만 아직도 완전히 EF Core를 제대로 알고 쓰는 사례가 많이 없는...
조회수 0회
2023년 1월 28일1분 분량
How To Create gRPC Server in .NET and Add gRPC-Web - C# & .NET
In gRPC world, there is no text-to-binary conversion, so the machines do not spend time to convert data to the format they can read. ...
조회수 1회
2023년 1월 28일1분 분량
Add CORS To gRPC-Web Server - C# & .NET
If you separate front and back end, you may have CORS issue. The CORS issue can happen if you assign different ports or use different...
조회수 3회
2022년 12월 4일1분 분량
AutoMapper (오토매퍼) 사용법 - C# & .NET
개발 코딩을 하다 보면 아주 많은 클래스들을 만들게 되는데요, 데이터베이스 (Entity Framework) 나 Web Api를 이용하다 보면 소스 클래스에서 프로그램에 이용할 다른 클래스로 Conversion과 Mapping을 해야 하는 경우가...
조회수 45회
bottom of page