본문 바로가기

반응형

Backend/.NET

(28)
Adding Relation to DB Entity framework makes adding a relationship between tables easy. Let's see how it is done. Creating an Application First, let's create a .NET application. How to create a .NET web-API application (tistory.com) How to create .NET web-API Setting up development tools When working with .NET, we need tools to create a web application. We can download them in the link below.다. .NET | Free. Cross-pla..
Auto Migration and Data Seeding When you download a .NET application for the first time and try to run the project, you might face a problem running the project if you don't seed the data first. Entity Framework provides an easy way to create a database when setting up the project after downloading. Creating an Application First, let's create a .NET application. How to create a .NET web-API application (tistory.com) How to cre..
Server Architecture - Distributing Projects Server Structure An interface is a middleman between the browser and the server. It sends a request to a server and handles the response from it. The interface has a dependency on the infrastructure which also has a dependency on the application core project that defines things that are specific to the project such as business logic hence has no dependency on any other project. Implementation 1...
Working with SQLite in .NET (Code first) There are two ways of using the Entity Framework to connect a database to a project. One way is to create the database first which is called the database first approach and the other, of course, is to write code first which is called the code first approach. In this writing, we will see the second approach. HTML 삽입 미리보기할 수 없는 소스

728x90