Skip to content

Commit a696e23

Browse files
committed
Merged main into live
2 parents 8ae753c + 7fcce75 commit a696e23

10 files changed

+26
-26
lines changed

docs/code-quality/static-code-analysis-for-managed-code-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,5 +71,5 @@ You can use the integrated features of the build system to run the analysis tool
7171
## Related content
7272

7373
- [Overview of .NET Compiler Platform-based analyzers](../code-quality/roslyn-analyzers-overview.md)
74-
- [Using Rule Sets to Group Code Analysis Rules](/previous-versions/visualstudio/visual-studio-2019//code-quality/using-rule-sets-to-group-code-analysis-rules.md)
74+
- [Using Rule Sets to Group Code Analysis Rules](/previous-versions/visualstudio/visual-studio-2019/code-quality/using-rule-sets-to-group-code-analysis-rules)
7575
- [How to: Enable and Disable Automatic Code Analysis](../code-quality/how-to-enable-and-disable-automatic-code-analysis-for-managed-code.md)

docs/data-tools/entity-data-model-tools-in-visual-studio.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.subservice: data-tools
1111

1212
# Entity Framework Tools in Visual Studio
1313

14-
Entity Framework is an object-relational mapping technology that enables .NET developers to work with relational data by using domain-specific objects. It eliminates the need for most of the data-access code that developers usually need to write. Entity Framework is the recommended object-relational mapping (ORM) modeling technology for new .NET applications.
14+
Entity Framework is an object-relational mapping (ORM) technology that enables .NET developers to work with relational data by using domain-specific objects. It eliminates the need for most of the data-access code that developers usually need to write. Entity Framework is the recommended object-relational mapping (ORM) modeling technology for new .NET applications.
1515

1616
Entity Framework Tools are designed to help you build Entity Framework (EF) applications. The complete documentation for Entity Framework is here: [Overview - EF 6](/ef/ef6/).
1717

docs/data-tools/how-to-add-update-or-remove-a-wcf-data-service-reference.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ The WCF tools are not installed with the .NET workload; use the Visual Studio In
3131

3232
### To add a reference to an external service (.NET Framework projects)
3333

34-
1. In **Solution Explorer**, right-click the name of the project to which you want to add the service, and then click **Add Service Reference**.
34+
1. In **Solution Explorer**, right-click the name of the project to which you want to add the service, and then select **Add Service Reference**.
3535

3636
The **Add Service Reference** dialog box appears.
3737

38-
1. In the **Address** box, enter the URL for the service, and then click **Go** to search for the service. If the service implements user name and password security, you might be prompted for a user name and password. You can also choose a service in your own solution. Choose the **Discover** button, and then choose **Services in Solution**.
38+
1. In the **Address** box, enter the URL for the service, and then select **Go** to search for the service. If the service implements user name and password security, you might be prompted for a user name and password. You can also choose a service in your own solution. Choose the **Discover** button, and then choose **Services in Solution**.
3939

4040
> [!NOTE]
4141
> You should only reference services from a trusted source. Adding references from an untrusted source might compromise security.
@@ -64,7 +64,7 @@ The WCF tools are not installed with the .NET workload; use the Visual Studio In
6464

6565
![Screenshot of WCF Web Service Provider dialog box](media/vs-2019/configure-wcf-web-service-reference-dialog.png)
6666

67-
1. In the **URI** box, enter the URL for the service, and then click **Go** to search for the service. If the service implements user name and password security, you might be prompted for a user name and password.
67+
1. In the **URI** box, enter the URL for the service, and then select **Go** to search for the service. If the service implements user name and password security, you might be prompted for a user name and password.
6868

6969
> [!NOTE]
7070
> You should only reference services from a trusted source. Adding references from an untrusted source might compromise security.
@@ -83,7 +83,7 @@ The WCF tools are not installed with the .NET workload; use the Visual Studio In
8383

8484
### To add a reference to a service in the current solution (.NET Framework projects)
8585

86-
1. In **Solution Explorer**, right-click the name of the project to which you want to add the service, and then click **Add Service Reference**.
86+
1. In **Solution Explorer**, right-click the name of the project to which you want to add the service, and then select **Add Service Reference**.
8787

8888
The **Add Service Reference** dialog box appears.
8989

@@ -128,7 +128,7 @@ The Entity Data Model for a WCF Data Services sometimes changes. When this happe
128128
### To update a service reference
129129

130130
:::moniker range="<=vs-2019"
131-
- In **Solution Explorer**, right-click the service reference and then click **Update Service Reference**.
131+
- In **Solution Explorer**, right-click the service reference, and then select **Update Service Reference**.
132132

133133
A progress dialog box displays while the reference is updated from its original location, and the service client is regenerated to reflect any changes in the metadata.
134134
:::moniker-end
@@ -138,7 +138,7 @@ For .NET Core projects, use the `dotnet-svcutil` tool. See [dotnet-svcutil](/dot
138138

139139
For .NET Framework projects:
140140

141-
- In **Solution Explorer**, expand the **Connected Services** node, right-click the service reference, and then click **Update Service Reference**.
141+
- In **Solution Explorer**, expand the **Connected Services** node, right-click the service reference, and then select **Update Service Reference**.
142142

143143
A progress dialog box displays while the reference is updated from its original location, and the service client is regenerated to reflect any changes in the metadata.
144144
:::moniker-end
@@ -149,7 +149,7 @@ If a service reference is no longer being used, you can remove it from your solu
149149

150150
### To remove a service reference
151151

152-
- In **Solution Explorer**, right-click the service reference and then click **Delete**.
152+
- In **Solution Explorer**, right-click the service reference, and then select **Delete**.
153153

154154
The service client will be removed from the solution, and the metadata that describes the service will be removed from the *app.config* file.
155155

docs/data-tools/how-to-add-validation-to-entity-classes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ This procedure shows how to validate data when the value in a column changes. Be
3333

3434
1. Open or create a new LINQ to SQL Classes file (*`.dbml`* file) in the **O/R Designer**. (Double-click the *`.dbml`* file in **Solution Explorer**.)
3535

36-
2. In the **O/R Designer**, right-click the class for which you want to add validation and then click **View Code**.
36+
2. In the **O/R Designer**, right-click the class for which you want to add validation, and then select **View Code**.
3737

3838
The Code Editor opens with a partial class for the selected entity class.
3939

docs/data-tools/how-to-configure-inheritance-by-using-the-o-r-designer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ Creating an object model that uses inheritance (and corresponds to relational da
2525

2626
3. Drag a second copy of the table onto the **O/R Designer** and rename it. This is the derived class, or subclass.
2727

28-
4. Click **Inheritance** in the **Object Relational Designer** tab of the **Toolbox**, and then click the subclass (the table you renamed) and connect it to the base class.
28+
4. Click **Inheritance** in the **Object Relational Designer** tab of the **Toolbox**, and then select the subclass (the table you renamed) and connect it to the base class.
2929

3030
> [!NOTE]
31-
> Click the **Inheritance** item in the **Toolbox** and release the mouse button, click the second copy of the class you created in step 3, and then click the first class you created in step 2. The arrow on the inheritance line points to the first class.
31+
> Click the **Inheritance** item in the **Toolbox** and release the mouse button, click the second copy of the class you created in step 3, and then select the first class you created in step 2. The arrow on the inheritance line points to the first class.
3232
3333
5. In each class, delete any object properties that you do not want to appear and that are not used for associations. You receive an error if you attempt to delete object properties used for associations: [`The property <property name> cannot be deleted because it is participating in the association <association name>`](../data-tools/the-property-property-name-cannot-be-deleted-because-it-is-participating-in-the-association-association-name.md).
3434

docs/data-tools/how-to-connect-to-data-in-a-service.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ The WCF tools are not installed with the .NET workload; use the Visual Studio In
3636

3737
1. On the **Data** menu, click **Add New Data Source**.
3838

39-
2. Select **Service** on the **Choose a Data Source Type** page, and then click **Next**.
39+
2. Select **Service** on the **Choose a Data Source Type** page, and then select **Next**.
4040

41-
3. Enter the address of the service you want to use, or click **Discover** to locate services in the current solution, and then click **Go**.
41+
3. Enter the address of the service you want to use, or click **Discover** to locate services in the current solution, and then select **Go**.
4242

4343
4. Optionally, you can type a new **Namespace** in place of the default value.
4444

docs/data-tools/how-to-create-an-association-relationship-between-linq-to-sql-classes-o-r-designer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ After you create an association, when you select the association in the **O/R De
3232

3333
## To create an association between entity classes
3434

35-
1. Right-click the entity class that represents the parent class in the association, point to **Add**, and then click **Association**.
35+
1. Right-click the entity class that represents the parent class in the association, point to **Add**, and then select **Association**.
3636

3737
2. Verify that the correct **Parent Class** is selected in the **Association Editor** dialog box.
3838

docs/data-tools/how-to-create-linq-to-sql-classes-mapped-to-tables-and-views-o-r-designer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ After you create entity classes by using the **O/R Designer**, you can create an
4444

4545
3. In the **Data Sources** window, click **Add New Data Source**.
4646

47-
4. Click **Object** on the **Choose a Data Source Type** page and then click **Next**.
47+
4. Click **Object** on the **Choose a Data Source Type** page, and then select **Next**.
4848

4949
5. Expand the nodes and locate and select your class.
5050

docs/data-tools/how-to-extend-code-generated-by-the-o-r-designer.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Code generated by the **O/R Designer** is regenerated when changes are made to t
2121

2222
1. Open or create a new LINQ to SQL Classes file (*`.dbml`* file) in the **O/R Designer**. (Double-click the *`.dbml`* file in **Solution Explorer** or **Database Explorer**.)
2323

24-
2. In the **O/R Designer**, right-click the class for which you want to add validation and then click **View Code**.
24+
2. In the **O/R Designer**, right-click the class for which you want to add validation, and then select **View Code**.
2525

2626
The Code Editor opens with a partial class for the selected entity class.
2727

@@ -33,7 +33,7 @@ Code generated by the **O/R Designer** is regenerated when changes are made to t
3333

3434
1. Open or create a new LINQ to SQL Classes file (*`.dbml`* file) in the **O/R Designer**. (Double-click the *`.dbml`* file in **Solution Explorer** or **Database Explorer**.)
3535

36-
2. In the **O/R Designer**, right-click an empty area on the designer and then click **View Code**.
36+
2. In the **O/R Designer**, right-click an empty area on the designer, and then select **View Code**.
3737

3838
The Code Editor opens with a partial class for the DataContext.
3939

docs/data-tools/pass-data-between-forms.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -81,23 +81,23 @@ This tutorial uses SQL Server Express LocalDB and the Northwind sample database.
8181

8282
2. In the **Data Sources** window, select **Add New Data Source** to start the **Data Source Configuration** wizard.
8383

84-
3. Select **Database** on the **Choose a Data Source Type** page, and then click **Next**.
84+
3. Select **Database** on the **Choose a Data Source Type** page, and then select **Next**.
8585

86-
4. On the **Choose a database model** page, verify that **Dataset** is specified, and then click **Next**.
86+
4. On the **Choose a database model** page, verify that **Dataset** is specified, and then select **Next**.
8787

8888
5. On the **Choose your Data Connection** page, do one of the following:
8989

9090
- If a data connection to the Northwind sample database is available in the dropdown list, select it.
9191

9292
- Select **New Connection** to launch the **Add/Modify Connection** dialog box.
9393

94-
6. If your database requires a password and if the option to include sensitive data is enabled, select the option and then click **Next**.
94+
6. If your database requires a password and if the option to include sensitive data is enabled, select the option, and then select **Next**.
9595

9696
7. On the **Save connection string to the Application Configuration file** page, click **Next**.
9797

9898
8. On the **Choose your Database Objects** page, expand the **Tables** node.
9999

100-
9. Select the **Customers** and **Orders** tables, and then click **Finish**.
100+
9. Select the **Customers** and **Orders** tables, and then select **Finish**.
101101

102102
The **NorthwindDataSet** is added to your project, and the **Customers** and **Orders** tables appear in the **Data Sources** window.
103103

@@ -135,9 +135,9 @@ Add a TableAdapter query to Form2 to load orders for the selected customer on Fo
135135

136136
2. Right-click the **OrdersTableAdapter**, and select **Add Query**.
137137

138-
3. Leave the default option of **Use SQL statements**, and then click **Next**.
138+
3. Leave the default option of **Use SQL statements**, and then select **Next**.
139139

140-
4. Leave the default option of **SELECT which returns rows**, and then click **Next**.
140+
4. Leave the default option of **SELECT which returns rows**, and then select **Next**.
141141

142142
5. Add a `WHERE` clause to the query, to return `Orders` based on the `CustomerID`. The query should be similar to the following:
143143

@@ -154,7 +154,7 @@ Add a TableAdapter query to Form2 to load orders for the selected customer on Fo
154154

155155
7. For the **Fill a DataTableMethod Name**, type `FillByCustomerID`.
156156

157-
8. Clear the **Return a DataTable** option, and then click **Next**.
157+
8. Clear the **Return a DataTable** option, and then select **Next**.
158158

159159
9. Click **Finish**.
160160

@@ -175,7 +175,7 @@ Add a TableAdapter query to Form2 to load orders for the selected customer on Fo
175175

176176
## Create a method on Form1 to pass data and display Form2
177177

178-
1. In **Form1**, right-click the Customer data grid, and then click **Properties**.
178+
1. In **Form1**, right-click the Customer data grid, and then select **Properties**.
179179

180180
2. In the **Properties** window, click **Events**.
181181

0 commit comments

Comments
 (0)