전체 글 (464) 썸네일형 리스트형 Adding Configurations When Creating a Database Let's see how we can add additional validations using Entity Framework Creating an Application 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-platform. Open Source. (microsoft.com) .NET | Free. Cross-platform. Open Source. .NET is a develo jin-co.tistory.com Co.. Application Architecture - Repository It is a good practice to separate business logic and data handling. Entity Framework provides an MVC pattern to separate them. However, as the size of a project grows, adding data handling codes directly in the controller file creates duplicate codes and becomes hard to test. A repository pattern is a design pattern that reduces duplication and makes testing easier. Let's see how we can implemen.. Progressive Web App Progressive web app is a combination of web and native app. It allows users to use the pros of the two platforms and even work when there is no network available using service worker, cache, web storate, indexedDB. What make an application Progressive web app can defined as below: Responsive (Can be rendered on both web and mobile screens smoothly) Can work independently from the network. Able t.. Service Worker The Service worker is a script that runs on the browser. So whenever there is an out bound request to the server from the browser the service worker checks a cache history of the request and deals with the request by itself using the cache history. The service worker runs even when a user closes the tap meaning that it can recognize the next request form the users when they visit again. This all.. Angular Library - Angular PWA Angular service worker makes Angular a Progressive Web App (PWA). To maximize the user experience Angular follow a guideline below: An application is stored in the same cache so that all the files in the application can be updated all together. Updated cache does not take an effect and runs the current version until the page is reloaded The updating happens behind the scene and the updated versi.. Angular Library - Angular Animations To use Angular Animation we need BrowserModule and BrowserAnimationsModule. These come automatically when you create an Angular application using the Angular CLI import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; @NgModule({ imports: [ BrowserModule, BrowserAnimations.. Angular Library - Angular HttpClient Angular HttpClient module is the Angular version of making http request and handle the responses HTML 삽입 미리보기할 수 없는 소스 Angular Library - Angular Forms Forms are one of the one of the most frequently used features in web applications. The angular form provides various functions such as validation. There are two major forms of the angular form, ‘reactive’ and ‘template-driven’. Differences Reactive form directly creates a form object that allows the necessary setups in the .ts file and uses this from the template file using binding. This provide.. 이전 1 ··· 19 20 21 22 23 24 25 ··· 58 다음