update

2881099
2023-11-22 19:41:26 +08:00
parent fdf55116c5
commit 25cf3d4b24
4 changed files with 9 additions and 9 deletions

@@ -10,7 +10,7 @@ QQ Groups4336577(full)、8578575(full)、52508226(full)
FreeSql uses a model to perform data access. The model is represented by an entity class to represent a database table or view for querying and saving data.
The entity model can be generated from an existing database, and FreeSql provides the `IDbFirst` interface to [generate the entity model](DbFirst-Mode).
The entity model can be generated from an existing database, and FreeSql provides the `IDbFirst` interface to [generate the entity model](DbFirst).
Or you can create the model manually, and then create or modify the database based on the model. FreeSql provides an API for the `ICodeFirst` synchronization structure (it can even be synchronized automatically during the development phase).
@@ -97,7 +97,7 @@ fsql.GlobalFilter; //Gloabl Filter Object
## Migration
When the program is running, `FreeSql` will check the `AutoSyncStructure` parameter, and use this condition to determine whether to compare the changes between the entity and the database structure to achieve the purpose of automatic migration. For more information, please refer to the [CodeFirst Documentation](CodeFirst-Mode).
When the program is running, `FreeSql` will check the `AutoSyncStructure` parameter, and use this condition to determine whether to compare the changes between the entity and the database structure to achieve the purpose of automatic migration. For more information, please refer to the [CodeFirst Documentation](CodeFirst).
> Note: Use this feature in a production environment with **caution**.

@@ -25,7 +25,7 @@ QQ Groups4336577(full)、8578575(full)、52508226(full)
## Guide
FreeSql supports basic CURD. In addition, it also supports creating models based on existing databases ([DbFirst](DbFirst-Mode)), and supports creating databases based on models ([CodeFirst](CodeFirst-Mode)).
FreeSql supports basic CURD. In addition, it also supports creating models based on existing databases ([DbFirst](DbFirst)), and supports creating databases based on models ([CodeFirst](CodeFirst)).
#### Getting Started
@@ -37,13 +37,13 @@ FreeSql supports basic CURD. In addition, it also supports creating models based
#### Deep Learning
- 🚧 [《Introduction to Codefirst Mode》](CodeFirst-Mode)
- 🚧 [《Introduction to Codefirst Mode》](CodeFirst)
- 🚧 [《CodeFirst Mode, Part 1: Entity Attributes》](Entity-Attributes)
- 🚧 [《CodeFirst Mode, Part 2: FluentApi》](FluentApi-Mode)
- 🚧 [《CodeFirst Mode, Part 3: Custom Attributes》](Custom-Attributes)
- 🚧 [《CodeFirst Mode, Part 4: Type Mapping》](Type-Mapping)
- 🚧 [《CodeFirst Mode, Part 5: Migration Structure》](Migration-Structure)
- 🚧 [《Introduction to DbFirst Mode》](DbFirst-Mode)
- 🚧 [《Introduction to DbFirst Mode》](DbFirst)
#### Advanced

@@ -18,7 +18,7 @@ Database configuration> Entity Attribute> FluentApi> Aop (custom entity attribut
## Reference
- [《Introduction to Codefirst Mode》](CodeFirst-Mode)
- [《Introduction to Codefirst Mode》](CodeFirst)
- [《CodeFirst Mode, Part 1: Entity Attributes》](Entity-Attributes)
- [《CodeFirst Mode, Part 2: FluentApi》](FluentApi-Mode)
- [《CodeFirst Mode, Part 3: Custom Attributes》](Custom-Attributes)

@@ -43,7 +43,7 @@ dotnet add package FreeSql.Provider.MySqlConnector
## Guide
FreeSql supports basic CURD. In addition, it also supports creating models based on existing databases ([DbFirst](DbFirst-Mode)), and supports creating databases based on models ([CodeFirst](CodeFirst-Mode)).
FreeSql supports basic CURD. In addition, it also supports creating models based on existing databases ([DbFirst](DbFirst)), and supports creating databases based on models ([CodeFirst](CodeFirst)).
#### Getting Started
@@ -55,13 +55,13 @@ FreeSql supports basic CURD. In addition, it also supports creating models based
#### Deep Learning
- [《Introduction to Codefirst Mode》](CodeFirst-Mode)
- [《Introduction to Codefirst Mode》](CodeFirst)
- [《CodeFirst Mode, Part 1: Entity Attributes》](Entity-Attributes)
- [《CodeFirst Mode, Part 2: FluentApi》](FluentApi-Mode)
- [《CodeFirst Mode, Part 3: Custom Attributes》](Custom-Attributes)
- [《CodeFirst Mode, Part 4: Type Mapping》](Type-Mapping)
- [《CodeFirst Mode, Part 5: Migration Structure》](Migration-Structure)
- [《Introduction to DbFirst Mode》](DbFirst-Mode)
- [《Introduction to DbFirst Mode》](DbFirst)
#### Advanced