You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: aspnetcore/data/ef-mvc/intro.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,7 +67,7 @@ Users can view and update student, course, and instructor information. Here are
67
67
1. In the **Configure your new project** dialog, enter `ContosoUniversity` for **Project name**. It's important to use this exact name including capitalization, so each `namespace` matches when code is copied.
68
68
1. Select **Create**.
69
69
1. In the **Create a new ASP.NET Core web application** dialog, select:
70
-
1.**.NET Core** and **ASP.NET Core 5.0** in the dropdowns.
70
+
1.**.NET** and **ASP.NET Core 5.0** in the dropdowns.
71
71
1.**ASP.NET Core Web App (Model-View-Controller)**.
72
72
1.**Create**
73
73

@@ -396,10 +396,10 @@ The sample application is a web site for a fictional Contoso University. It incl
*[Visual Studio 2019](https://visualstudio.microsoft.com/downloads/?utm_medium=microsoft&utm_source=learn.microsoft.com&utm_campaign=inline+link&utm_content=download+vs2019) with the following workloads:
Copy file name to clipboardExpand all lines: aspnetcore/data/ef-rp/intro.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -642,7 +642,7 @@ Run the project to seed the database.
642
642
1. In the **Configure your new project** dialog, enter `ContosoUniversity` for **Project name**. It's important to use this exact name including capitalization, so each `namespace` matches when code is copied.
643
643
1. Select **Create**.
644
644
1. In the **Create a new ASP.NET Core web application** dialog, select:
645
-
1.**.NET Core** and **ASP.NET Core 5.0** in the dropdowns.
645
+
1.**.NET** and **ASP.NET Core 5.0** in the dropdowns.
646
646
1.**ASP.NET Core Web App**.
647
647
1.**Create**
648
648

@@ -1153,7 +1153,7 @@ To run the app after downloading the completed project:
1153
1153
* From the Visual Studio **File** menu, select **New** > **Project**.
1154
1154
* Select **ASP.NET Core Web Application**.
1155
1155
* Name the project *ContosoUniversity*. It's important to use this exact name including capitalization, so the namespaces match when code is copied and pasted.
1156
-
* Select **.NET Core** and **ASP.NET Core 3.0** in the dropdowns, and then select **Web Application**.
1156
+
* Select **.NET** and **ASP.NET Core 3.0** in the dropdowns, and then select **Web Application**.
When `Contains` iscalledonan `IEnumerable` collection, the .NETCoreimplementationisused. When `Contains` iscalledonan `IQueryable` object, thedatabaseimplementationisused.
117
+
When `Contains` iscalledonan `IEnumerable` collection, the .NETimplementationisused. When `Contains` iscalledonan `IQueryable` object, thedatabaseimplementationisused.
Copy file name to clipboardExpand all lines: aspnetcore/data/entity-framework-6.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,11 +33,11 @@ This article shows how to use Entity Framework 6 in an ASP.NET Core application.
33
33
34
34
## Overview
35
35
36
-
To use Entity Framework 6, your project has to compile against .NET Framework, as Entity Framework 6 doesn't support .NET Core. If you need cross-platform features you will need to upgrade to [Entity Framework Core](/ef/).
36
+
To use Entity Framework 6, your project has to compile against .NET Framework, as Entity Framework 6 doesn't support .NET. If you need cross-platform features you will need to upgrade to [Entity Framework Core](/ef/).
37
37
38
38
The recommended way to use Entity Framework 6 in an ASP.NET Core application is to put the EF6 context and model classes in a class library project that targets .NET Framework. Add a reference to the class library from the ASP.NET Core project. See the sample [Visual Studio solution with EF6 and ASP.NET Core projects](https://github.com/dotnet/AspNetCore.Docs/tree/main/aspnetcore/data/entity-framework-6/sample/).
39
39
40
-
You can't put an EF6 context in an ASP.NET Core project because .NET Core projects don't support all of the functionality that EF6 commands such as *Enable-Migrations* require.
40
+
You can't put an EF6 context in an ASP.NET Core project because .NET projects don't support all of the functionality that EF6 commands such as *Enable-Migrations* require.
41
41
42
42
Regardless of project type in which you locate your EF6 context, only EF6 command-line tools work with an EF6 context. For example, `Scaffold-DbContext` is only available in Entity Framework Core. If you need to do reverse engineering of a database into an EF6 model, see [Code First to an Existing Database](/ef/ef6/modeling/code-first/workflows/existing-database).
Copy file name to clipboardExpand all lines: aspnetcore/mvc/advanced/custom-model-binding.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ Model binding allows controller actions to work directly with model types (passe
18
18
19
19
## Default model binder limitations
20
20
21
-
The default model binders support most of the common .NET Core data types and should meet most developers' needs. They expect to bind text-based input from the request directly to model types. You might need to transform the input prior to binding it. For example, when you have a key that can be used to look up model data. You can use a custom model binder to fetch data based on the key.
21
+
The default model binders support most of the common .NET data types and should meet most developers' needs. They expect to bind text-based input from the request directly to model types. You might need to transform the input prior to binding it. For example, when you have a key that can be used to look up model data. You can use a custom model binder to fetch data based on the key.
22
22
23
23
<!-- Duplicated in uid: mvc/models/model-binding -->
24
24
## Model binding simple and complex types
@@ -144,7 +144,7 @@ Model binding allows controller actions to work directly with model types (passe
144
144
145
145
## Default model binder limitations
146
146
147
-
The default model binders support most of the common .NET Core data types and should meet most developers' needs. They expect to bind text-based input from the request directly to model types. You might need to transform the input prior to binding it. For example, when you have a key that can be used to look up model data. You can use a custom model binder to fetch data based on the key.
147
+
The default model binders support most of the common .NET data types and should meet most developers' needs. They expect to bind text-based input from the request directly to model types. You might need to transform the input prior to binding it. For example, when you have a key that can be used to look up model data. You can use a custom model binder to fetch data based on the key.
Copy file name to clipboardExpand all lines: aspnetcore/test/debug-aspnetcore-source.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,9 +40,9 @@ The preceding instructions work for basic stepping into functions, but the optim
40
40
41
41
If you have debugged an app before with the previous version of .NET, delete the `%TEMP%/SymbolCache` directory as it can have old PDBs that are out of date.
42
42
43
-
## Debugging .NET Core on Unix over SSH
43
+
## Debugging .NET on Unix over SSH
44
44
45
-
*[Debugging .NET Core on Unix over SSH](https://devblogs.microsoft.com/devops/debugging-net-core-on-unix-over-ssh/)
45
+
*[Debugging .NET on Unix over SSH](https://devblogs.microsoft.com/devops/debugging-net-core-on-unix-over-ssh/)
46
46
*[Debugging ASP Core on Linux with Visual Studio 2017](https://devblogs.microsoft.com/premier-developer/debugging-asp-core-on-linux-with-visual-studio-2017/)
Copy file name to clipboardExpand all lines: aspnetcore/test/integration-tests/includes/integration-tests5.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
:::moniker range="<= aspnetcore-5.0"
2
2
3
-
This topic assumes a basic understanding of unit tests. If unfamiliar with test concepts, see the [Unit Testing in .NET Core and .NET Standard](/dotnet/core/testing/) topic and its linked content.
3
+
This topic assumes a basic understanding of unit tests. If unfamiliar with test concepts, see the [Unit Testing in .NET and .NET Standard](/dotnet/core/testing/) topic and its linked content.
4
4
5
5
[View or download sample code](https://github.com/dotnet/AspNetCore.Docs/tree/main/aspnetcore/test/integration-tests/samples) ([how to download](xref:index#how-to-download-a-sample))
This article assumes a basic understanding of unit tests. If unfamiliar with test concepts, see the [Unit Testing in .NET Core and .NET Standard](/dotnet/core/testing/) article and its linked content.
3
+
This article assumes a basic understanding of unit tests. If unfamiliar with test concepts, see the [Unit Testing in .NET and .NET Standard](/dotnet/core/testing/) article and its linked content.
4
4
5
5
[View or download sample code](https://github.com/dotnet/AspNetCore.Docs.Samples/tree/main/test/integration-tests/7.x/IntegrationTestsSample) ([how to download](xref:index#how-to-download-a-sample))
Copy file name to clipboardExpand all lines: aspnetcore/test/integration-tests/includes/integration-tests8.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
:::moniker range="= aspnetcore-8.0"
2
2
3
-
This article assumes a basic understanding of unit tests. If unfamiliar with test concepts, see the [Unit Testing in .NET Core and .NET Standard](/dotnet/core/testing/) article and its linked content.
3
+
This article assumes a basic understanding of unit tests. If unfamiliar with test concepts, see the [Unit Testing in .NET and .NET Standard](/dotnet/core/testing/) article and its linked content.
4
4
5
5
[View or download sample code](https://github.com/dotnet/AspNetCore.Docs.Samples/tree/main/test/integration-tests/8.x/IntegrationTestsSample) ([how to download](xref:index#how-to-download-a-sample))
Copy file name to clipboardExpand all lines: aspnetcore/test/integration-tests/includes/integration-tests9.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
:::moniker range="= aspnetcore-9.0"
2
2
3
-
This article assumes a basic understanding of unit tests. If unfamiliar with test concepts, see the [Unit Testing in .NET Core and .NET Standard](/dotnet/core/testing/) article and its linked content.
3
+
This article assumes a basic understanding of unit tests. If unfamiliar with test concepts, see the [Unit Testing in .NET and .NET Standard](/dotnet/core/testing/) article and its linked content.
4
4
5
5
[View or download sample code](https://github.com/dotnet/AspNetCore.Docs.Samples/tree/main/test/integration-tests/9.x/IntegrationTestsSample) ([how to download](xref:index#how-to-download-a-sample))
0 commit comments