Create a web API with ASP.NET Core and MongoDB
Last updated
Was this helpful?
Last updated
Was this helpful?
with the ASP.NET and web development workload
If using Windows, MongoDB is installed at C:\Program Files\MongoDB by default. Add C:\Program Files\MongoDB\Server\<version_number>\bin to the Path
environment variable. This change enables MongoDB access from anywhere on your development machine.
Use the mongo Shell in the following steps to create a database, make collections, and store documents. For more information on mongo Shell commands, see .
Choose a directory on your development machine for storing the data. For example, C:\BooksData on Windows. Create the directory if it doesn't exist. The mongo Shell doesn't create new directories.
Open a command shell. Run the following command to connect to MongoDB on default port 27017. Remember to replace <data_directory_path>
with the directory you chose in the previous step.
3.Open another command shell instance. Connect to the default test database by running the following command:
4.Run the following in a command shell:
If it doesn't already exist, a database named BookstoreDb is created. If the database does exist, its connection is opened for transactions.
5.Create a Books
collection using following command:
The following result is displayed:
6.Define a schema for the Books
collection and insert two documents using the following command:
The following result is displayed:
7.View the documents in the database using the following command:
The following result is displayed:
The schema adds an autogenerated _id
property of type ObjectId
for each document.
Go to File > New > Project.
Select the ASP.NET Core Web Application project type, and select Next.
Name the project BooksApi, and select Create.
Select the .NET Core target framework and ASP.NET Core 3.0. Select the API project template, and select Create.
Add a Models directory to the project root.
Add a Book
class to the Models directory with the following code:
In the preceding class, the Id
property:
Is required for mapping the Common Language Runtime (CLR) object to the MongoDB collection.
Add the following database configuration values to appsettings.json
:
Add a BookstoreDatabaseSettings.cs file to the Models directory with the following code:
The preceding BookstoreDatabaseSettings
class is used to store the appsettings.json file's BookstoreDatabaseSettings
property values. The JSON and C# property names are named identically to ease the mapping process.
Add the following highlighted code to Startup.ConfigureServices
:
In the preceding code:
The configuration instance to which the appsettings.json file's BookstoreDatabaseSettings
section binds is registered in the Dependency Injection (DI) container. For example, a BookstoreDatabaseSettings
object's ConnectionString
property is populated with the BookstoreDatabaseSettings:ConnectionString
property in appsettings.json.
Add the following code to the top of Startup.cs to resolve the BookstoreDatabaseSettings
and IBookstoreDatabaseSettings
references:
Add a Services directory to the project root.
Add a BookService
class to the Services directory with the following code:
Add the following highlighted code to Startup.ConfigureServices
:
Add the following code to the top of Startup.cs to resolve the BookService
reference:
The BookService
class uses the following MongoDB.Driver
members to perform CRUD operations against the database:
collection
represents the collection name.
TDocument
represents the CLR object type stored in the collection.
Add a BooksController
class to the Controllers directory with the following code:
Uses the BookService
class to perform CRUD operations.
Contains action methods to support GET, POST, PUT, and DELETE HTTP requests.
Build and run the app.
Navigate to http://localhost:<port>/api/books
to test the controller's parameterless Get
action method. The following JSON response is displayed:
Navigate to http://localhost:<port>/api/books/{id here}
to test the controller's overloaded Get
action method. The following JSON response is displayed:
The property names' default camel casing should be changed to match the Pascal casing of the CLR object's property names.
The bookName
property should be returned as Name
.
To satisfy the preceding requirements, make the following changes:
In Startup.ConfigureServices
, chain the following highlighted code on to the AddControllers
method call:
With the preceding change, property names in the web API's serialized JSON response match their corresponding property names in the CLR object type. For example, the Book
class's Author
property serializes as Author
.
The [JsonProperty]
attribute's value of Name
represents the property name in the web API's serialized JSON response.
Add the following code to the top of Models/Book.cs to resolve the [JsonProperty]
attribute reference:C#Copy
Visit the to determine the latest stable version of the .NET driver for MongoDB. In the Package Manager Console window, navigate to the project root. Run the following command to install the .NET driver for MongoDB
Is annotated with to designate this property as the document's primary key.
Is annotated with to allow passing the parameter as type string
instead of an structure. Mongo handles the conversion from string
to ObjectId
.
The BookName
property is annotated with the attribute. The attribute's value of Name
represents the property name in the MongoDB collection.
The IBookstoreDatabaseSettings
interface is registered in DI with a singleton . When injected, the interface instance resolves to a BookstoreDatabaseSettings
object.
In the preceding code, an IBookstoreDatabaseSettings
instance is retrieved from DI via constructor injection. This technique provides access to the appsettings.json configuration values that were added in the section.
In the preceding code, the BookService
class is registered with DI to support constructor injection in consuming classes. The singleton service lifetime is most appropriate because BookService
takes a direct dependency on MongoClient
. Per the official , MongoClient
should be registered in DI with a singleton service lifetime.
: Reads the server instance for performing database operations. The constructor of this class is provided the MongoDB connection string:
: Represents the Mongo database for performing operations. This tutorial uses the generic method on the interface to gain access to data in a specific collection. Perform CRUD operations against the collection after this method is called. In the GetCollection<TDocument>(collection)
method call:
GetCollection<TDocument>(collection)
returns a object representing the collection. In this tutorial, the following methods are invoked on the collection:
: Deletes a single document matching the provided search criteria.
: Returns all documents in the collection matching the provided search criteria.
: Inserts the provided object as a new document in the collection.
: Replaces the single document matching the provided search criteria with the provided object.
Calls in the Create
action method to return an response. Status code 201 is the standard response for an HTTP POST method that creates a new resource on the server. CreatedAtRoute
also adds a Location
header to the response. The Location
header specifies the URI of the newly created book.
There are two details to change about the JSON responses returned in the section:
JSON.NET has been removed from ASP.NET shared framework. Add a package reference to .
In Models/Book.cs, annotate the BookName
property with the following attribute:C#Copy
Repeat the steps defined in the section. Notice the difference in JSON property names.