Home Backend Development C#.Net Tutorial Methods to migrate database to SQL Server using EF Core in .NET Core class library_Practical tips

Methods to migrate database to SQL Server using EF Core in .NET Core class library_Practical tips

Dec 15, 2017 pm 03:41 PM
.net core migrate

This article mainly introduces the summary of the Redux architecture used in ReactNative. The editor thinks it is quite good. Now I will share it with you and give it a reference. Friends who are interested in .NET should follow the editor to take a look.

This article introduces a summary of the Redux architecture used in ReactNative and shares it with everyone. The details are as follows:

I have been using Redux for some time. in conclusion.

Why use Redux?

Background:

  1. RN’s state (variable, subcomponents are invisible) and The design of props (immutable, visible to sub-components), when faced with large-scale projects, can easily cause state confusion due to inadvertent modification of state, and component rendering errors

  2. RN uses Virtual DOM, which does not Target binding->Action is required to modify the UI properties. As long as the state changes, the component in the new state is rendered, and the data is transmitted in one direction, while the MVC design pattern has a two-way data flow.

  3. RN is not easy to test. Redux provides a very convenient mock testing method.

Redux development

Development environment

  1. Install Redux: 'npm install –save redux'

  2. Install React Native and Redux binding libraries: npm install –save react-redux

  3. Install Redux Thunk asynchronous Action middleware: npm install –save redux-thunk

Three principles

Single data source

The entire application's state is stored in an object tree, which exists in a unique store. The state in the store is bound to the component

State is read-only

The only way to change the state is to trigger the action. action is an ordinary JS object containing a type attribute, which can represent events as constants.

Use pure functions to perform modifications

Write reducers to describe how the corresponding action modifies state. Generally, you can use switch(action.type) to handle it without side effects

Use

react-redux provides connect and Provider.

1. Provider is the top-level distribution point, and its attribute is Store, which distributes State to all connected components

2. connect: accepts two parameters: one is mapStateToProps or mapDispatchToProps, one is the component itself to be bound.

Store

Store is the object that connects Reducer and action. Store has the following responsibilities:

  1. Maintain the state of the application – similar to a database, storing all the state of the application.

  2. Provide getState() method. Obtain all current states;

  3. Provides the dispatch(action) method to update the state, which is equivalent to storing it in the database and storing the action to change the state.

  4. Register the listener through subscribe(listener).

Store is essentially an object that saves the entire application's State in the form of a tree. and provides some methods. For example getState() and dispatch().

Redux application has only one Store.

Store is created through the createStore method, based on the initial State of the root Reducer of the entire application.

The code is as follows:


##

import { createStore, applyMiddleware } from 'redux';
import thunk from 'redux-thunk';//异步
import reducers from './reducers';
const Store = applyMiddleware(thunk)(createStore)(reducers);
export default Store;
Copy after login


Reducers

Action only describes the fact that something happened, and does not specify how the application updates state. This is what the reducer does.

The essence of Reducer is a function, and it is a pure function. There are no side effects. Simply put, the Reducer is only responsible for doing one thing, which is to modify the state in the Store based on the received action and state:


(state, action) => newState

In general implementation, switch(action.type) is used to judge different Actions, and the default is the old state. The initial state can also be defined.


Code:


##

import { combineReducers } from 'redux';
const newState = (state = {}, action = {}) => {
 switch (action.type) {
  case ActionTypes.CSTATE:
   return { ...state, ...action.state };
  case '_DPDATACHANGE_':
   return {...state, ...action.dpState};
  default:
   return state;
 }
};
//Reducer 合并
export default combineReducers({
 newState,
});
Copy after login


Note: The new state is returned, if you need to keep it For some old state values, use...state (the object expansion syntax of ES7 will shallowly copy the corresponding properties of the object, which is equivalent to Object.assign({}, state, newState)). If you merge state, you will only merge one layer. , complex states need to be merged manually.

Action

Action is an ordinary JS object, including at least one type attribute representing the event, and other attributes can be used to pass data. In practice, a function is defined for a process. The process can include network requests and finally return Action. This function is called Action Creator.

Code: Store can dispatch this Action. The type of action represents the identifier, and state is the data it carries.

export const newState = state => {
 Store.dispatch({
  type: ActionTypes.CSTATE,
  state,
 });
};
Copy after login


Persistence

When the action is triggered, the data is restored according to its reducer key. Then you only need to distribute the action when the application starts, which can be easily abstracted into a configurable extension service. In fact, the third-party library redux-persist has already done all this for us.

The code in Action can be as follows:

export const getStorage = async (key) => {
 const d = await AsyncStorage.getItem(key);
 return JSON.parse(d);
};
export const setStorage = (key, value) => {
 AsyncStorage.setItem(key, JSON.stringify(value));
};
Copy after login


connect

Pass - Provides getState() method. Get all current state

通过connect,绑定需要的state以及Action Creator到你的组件的props上,这样组件就可以通过props来调用Action Creator,或者根据不同props来render()不同的组件。

代码:


mapStateToProps({ newState }) {
      const value = newState[name];//name: newState.name
      return {
       name,
      };
     },
Copy after login


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持PHP中文网。

相关推荐:

如何理解 redux

JavaScript技巧中关于react-redux中connect()方法详细解析

在React中使用Redux的实例详解

The above is the detailed content of Methods to migrate database to SQL Server using EF Core in .NET Core class library_Practical tips. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to enable Core Isolation's memory integrity feature in Windows 11 How to enable Core Isolation's memory integrity feature in Windows 11 May 10, 2023 pm 11:49 PM

Microsoft's Windows 11 2022 Update (22H2) enables CoreIsolation's memory integrity protection by default. However, if you are running an older version of the operating system, such as Windows 11 2022 Update (22H1), you will need to turn this feature on manually. Turn on CoreIsolation's Memory Integrity feature in Windows 11 For users who don't know about Core Isolation, it's a security process designed to protect basic core activities on Windows from malicious programs by isolating them in memory. This process, combined with the memory integrity feature, ensures

How to migrate WeChat chat history to a new phone How to migrate WeChat chat history to a new phone Mar 26, 2024 pm 04:48 PM

1. Open the WeChat app on the old device, click [Me] in the lower right corner, select the [Settings] function, and click [Chat]. 2. Select [Chat History Migration and Backup], click [Migrate], and select the platform to which you want to migrate the device. 3. Click [Select chats to be migrated], click [Select all] in the lower left corner, or select chat records yourself. 4. After selecting, click [Start] in the lower right corner to log in to this WeChat account using the new device. 5. Then scan the QR code to start migrating chat records. Users only need to wait for the migration to complete.

What does computer core mean? What does computer core mean? Sep 05, 2022 am 11:24 AM

Core has two meanings in computers: 1. The core, also known as the core, is the most important component of the CPU. All calculations, accepting storage commands, and processing data of the CPU are performed by the core; 2. Core, core is Intel's processor Name, Core is the processor brand launched by Intel after the Pentium processor. It has currently released twelfth generation Core processors.

Linux and Docker: How to migrate and synchronize containers across hosts? Linux and Docker: How to migrate and synchronize containers across hosts? Jul 29, 2023 pm 02:52 PM

Linux and Docker: How to migrate and synchronize containers across hosts? Summary: Docker is a popular containerization technology that provides a lightweight virtualization solution. In a multi-host environment, it is a very common requirement to migrate and synchronize containers across hosts. This article will introduce how to use Linux and Docker to implement cross-host migration and synchronization of containers, and provide some sample code for reference. Introduction The rise of containerization technology makes application deployment and migration more flexible and efficient. on multiple hosts

How to migrate and integrate projects in GitLab How to migrate and integrate projects in GitLab Oct 27, 2023 pm 05:53 PM

How to migrate and integrate projects in GitLab Introduction: In the software development process, project migration and integration is an important task. As a popular code hosting platform, GitLab provides a series of convenient tools and functions to support project migration and integration. This article will introduce the specific steps for project migration and integration in GitLab, and provide some code examples to help readers better understand. 1. Project migration Project migration is to migrate the existing code base from a source code management system to GitLab

What are the employment prospects of C#? What are the employment prospects of C#? Oct 19, 2023 am 11:02 AM

Whether you are a beginner or an experienced professional, mastering C# will pave the way for your career.

Share several .NET open source AI and LLM related project frameworks Share several .NET open source AI and LLM related project frameworks May 06, 2024 pm 04:43 PM

The development of artificial intelligence (AI) technologies is in full swing today, and they have shown great potential and influence in various fields. Today Dayao will share with you 4 .NET open source AI model LLM related project frameworks, hoping to provide you with some reference. https://github.com/YSGStudyHards/DotNetGuide/blob/main/docs/DotNet/DotNetProjectPicks.mdSemanticKernelSemanticKernel is an open source software development kit (SDK) designed to integrate large language models (LLM) such as OpenAI, Azure

How to Fix Processor Thermal Trip Error in Windows 11/10 [Fix] How to Fix Processor Thermal Trip Error in Windows 11/10 [Fix] Apr 17, 2023 am 08:13 AM

Most of the devices, such as laptops and desktops, have been heavily used by young gamers and coders for a long time. The system sometimes hangs due to application overload. This forces users to shut down their systems. This mainly happens to players who install and play heavy games. When the system tries to boot after force shutdown, it throws an error on a black screen as shown below: Below are the warnings detected during this boot. These can be viewed in the settings on the event log page. Warning: Processor thermal trip. Press any key to continue. ..These types of warning messages are always thrown when the processor temperature of a desktop or laptop exceeds its threshold temperature. Listed below are the reasons why this happens on Windows systems. Many heavy applications are in

See all articles