Skip to content

Commit 4a08f4e

Browse files
DOCSP-42147 Update provider short name (#33)
1 parent 6a36c73 commit 4a08f4e

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

snooty.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = "entity-framework"
2-
title = "Entity Framework"
2+
title = "EF Core Provider"
33
toc_landing_pages = [
44
"/fundamentals/configure",
55
#"/fundamentals/crud",
@@ -16,7 +16,7 @@ sharedinclude_root = "https://raw.githubusercontent.com/10gen/docs-shared/main/"
1616

1717
[constants]
1818
provider-long = "MongoDB Entity Framework Core Provider"
19-
provider-short = "Entity Framework Core Provider"
19+
provider-short = "EF Core Provider"
2020
csharp-driver-long = "MongoDB .NET/C# Driver"
2121
csharp-driver-short = ".NET/C# Driver"
2222
framework = "Entity Framework"
@@ -27,8 +27,8 @@ dotnet-csharp = ".NET/C#"
2727
mdb-server = "MongoDB Server"
2828
mongo-community = "MongoDB Community Edition"
2929
mongo-enterprise = "MongoDB Enterprise Edition"
30-
docs-branch = "master" # always set this to the docs branch (i.e. master, 1.7, 1.8, etc.)
31-
version-number = "8.1" # always set this to the driver branch (i.e. 1.7.0, 1.8.0, etc.)
30+
docs-branch = "master" # always set this to the docs branch (i.e. master, 1.7, 1.8, etc.)
31+
version-number = "8.1" # always set this to the driver branch (i.e. 1.7.0, 1.8.0, etc.)
3232
full-version = "{+version-number+}.0"
3333
version = "v{+version-number+}"
3434
stable-api = "Stable API"

source/faq.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ following:
4040
- Aggregation operations
4141
- Custom mapping
4242

43-
The {+provider-long+} allows you to use Microsoft's {+framework-core+} with
43+
The {+provider-short+} allows you to use Microsoft's {+framework-core+} with
4444
MongoDB in your {+dotnet-csharp+} applications. The {+provider-short+} supports
4545
change tracking, entity-based LINQ operations, and modeling familiar to
4646
{+framework-core+} users. The provider includes features such as the following:

source/fundamentals/configure.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
.. _entity-framework-configure:
22

3-
===========================================
4-
Configure Entity Framework Core for MongoDB
5-
===========================================
3+
==============================
4+
Configure the {+provider-short+}
5+
==============================
66

77
.. facet::
88
:name: genre

source/fundamentals/query-data.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ Overview
2424
explicitly running database commands. To query your data, use the
2525
Language-Integrated Query (LINQ) syntax. LINQ allows you to write strongly typed
2626
queries using C#-specific keywords and operators. When you run the application,
27-
the {+provider-long+} automatically translates the LINQ queries and runs them on the
27+
the {+provider-short+} automatically translates the LINQ queries and runs them on the
2828
database using the MongoDB Query API.
2929

3030
In this guide you can see examples of common query operations on
31-
an application configured to use the {+provider-long+}.
31+
an application configured to use the {+provider-short+}.
3232

3333
.. tip::
3434

source/fundamentals/write-data.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ any changes made to your data and runs the necessary commands to update the
3030
database by using the MongoDB Query API.
3131

3232
In this guide, you can see examples of how to perform common write operations on
33-
an application configured to use the {+provider-long+}.
33+
an application configured to use the {+provider-short+}.
3434

3535
.. tip::
3636

source/index.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ running database commands. The {+provider-short+} tracks any queries or data
2626
changes you make, and automatically runs them on the database by using the
2727
MongoDB Query API.
2828

29-
Use the {+provider-long+} if you want to build a {+language-dotnet+} application
29+
Use the {+provider-short+} if you want to build a {+language-dotnet+} application
3030
that uses {+framework-core+} with MongoDB.
3131

3232
Download the provider by using `NuGet <https://www.nuget.org/packages/{+package+}>`__,

source/limitations.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Overview
2121
--------
2222

2323
On this page, you can find a list of {+framework+} and MongoDB features that
24-
the {+provider-long+} does not support. Because the provider is in active
24+
the {+provider-short+} does not support. Because the provider is in active
2525
development, some features listed on this page might be considered for future
2626
releases based on customer demand.
2727

@@ -78,7 +78,7 @@ Migrations
7878

7979
Migrations in {+framework-core+} are designed for relational databases. Because
8080
MongoDB is a document database, migrations are not supported by the
81-
{+provider-long+}.
81+
{+provider-short+}.
8282

8383
Database-First Development
8484
~~~~~~~~~~~~~~~~~~~~~~~~~~

source/quick-start.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Set Up Your Project
8484

8585
.. _entity-framework-add-mongodb-dependency:
8686

87-
.. step:: Add the {+provider-long+} as a Dependency
87+
.. step:: Add the {+provider-short+} as a Dependency
8888

8989
Use the ``dotnet add`` command to add the {+provider-short+} to your project as a
9090
dependency.

0 commit comments

Comments
 (0)