Creating the Initial Products Module

In this part, you will build a new module for product management and install it to the main CRM application.

Creating Solution Folders

You can create solution folders and sub-folders in Solution Explorer to better organize your solution components. Right-click to the solution root on the Solution Explorer panel, and select Add -> New Folder command:

abp-studio-add-new-folder-command

That command opens a dialog where you can set the folder name:

abp-studio-new-folder-dialog

Create main and modules folder using the New Folder command, then move the ModularCrm module into the main folder (simply by drag & drop). The Solution Explorer panel should look like the following figure now:

abp-studio-solution-explorer-with-folders

Creating The Module

There are two module templates provided by ABP Studio:

  • Empty Module: You can use that module template to build your module structure from scratch.
  • DDD Module: A Domain-Driven Design based layered module structure.

We will use the DDD Module template for the Product module. We will use the Empty Module template later in this tutorial.

Right-click the modules folder on the Solution Explorer panel, and select the Add -> New Module -> DDD Module command:

abp-studio-add-new-dd-module

This command opens a new dialog to define properties of the new module. You can use the following values to create a new module named ModularCrm.Products:

abp-studio-create-new-module-dialog

When you click the Next button, you are redirected to the UI selection step.

Selecting the UI Type

Here, you can select the UI type you want to support in your module:

abp-studio-create-new-module-dialog-step-ui

A module;

  • May not contain a UI and leaves the UI development to the final application.
  • May contain a single UI implementation that is typically in the same technology with the main application.
  • May contain more than one UI implementation if you want to create a reusable application module and you want to make that module usable by different applications with different UI technologies. For example, all of pre-built ABP modules support multiple UI options.

In this tutorial, we are selecting the MVC UI since we are building that module only for our ModularCrm solution and we are using the MVC UI in our application. So, select the MVC UI and click the Next button.

Selecting the Database Provider

The next step is to select the database provider (or providers) you want to support with your module:

abp-studio-create-new-module-dialog-step-db

Since our main application is using Entity Framework Core and we will use the ModularCrm.Products module only for that main application, we can select the Entity Framework Core option and click the Create button.

Exploring the New Module

After adding the new module, the Solution Explorer panel should look like the following figure:

abp-studio-solution-explorer-two-modules

The new ModularCrm.Products module has been created and added to the solution. The ModularCrm.Products module has a separate and independent .NET solution. Right-click the ModularCrm.Products module and select the Open with -> Explorer command:

abp-studio-open-in-explorer

This command opens the solution folder in your file system:

product-module-folder

You can open ModularCrm.Products.sln in your favorite IDE (e.g. Visual Studio):

product-module-visual-studio

As seen in the preceding figure, the ModularCrm.Products solution consists of several layers, each has own responsibility.

Installing the Product Module to the Main Application

A module does not contain an executable application inside. The Modular.Products.Web project is just a class library project, not an executable web application. A module should be installed to an executable application in order to run it.

Ensure that the web application is not running in Solution Runner or in your IDE. Installing a module to a running application will produce errors.

The product module has no relation to the main application yet. Right-click to the ModularCrm module (inside the main folder) and select the Import Module command:

abp-studio-import-module

The Import Module command opens a dialog as shown below:

abp-studio-import-module-dialog

Select the ModularCrm.Products module and check the Install this module option. If you don't check that option, it only imports the module but doesn't setup project dependencies. Importing a module without installation can be used to manually setup your project dependencies. Here, we want to make it automatically, so checking the Install this module option.

When you click the OK button, ABP Studio opens the Install Module dialog:

abp-studio-module-installation-dialog

This dialog simplifies installing a multi-layer module to a multi-layer application. It automatically determines which package of the ModularCrm.Products module should be installed to which package of the main application. For example, the ModularCrm.Products.Domain package is installed to the ModularCrm.Domain package. In that way, you can use domain objects (entities, repositories, ...) of the products module from the domain layer of your main application.

The default package match is good for this tutorial, so you can click the OK button to proceed.

Building the Main Application

After the installation, build the entire solution by right-clicking to the ModularCrm module (under the main folder) and select the Dotnet CLI -> Graph Build command:

abp-studio-graph-build

Graph Build is a dotnet CLI command that recursively build all the referenced dotnet projects even if they are not a part of the root solution.

While developing multi-module solutions with ABP Studio, you may need to perform Graph Build on the root/main module if you made changes in the depending modules.

Run the Main Application

Open the Solution Runner panel, click the Play button (near to the solution root), right-click the ModularCrm.Web application and select the Browse command. It will open the web application in the built-in browser. Then you can navigate to the Products page on the main menu of the application to see the Products page that is coming from the ModularCrm.Products module:

abp-studio-solution-runner-initial-product-page

Summary

In this part, we've created a new module to manage products in our modular application. Then we installed the new module to the main application and run the solution to test if it has successfully installed.

In the next part, you will learn how to create entities, services and a basic user interface for the products module.


Contributors


Last updated: September 19, 2024 Edit this page on GitHub

Was this page helpful?

Please make a selection.

To help us improve, please share your reason for the negative feedback in the field below.

Please enter a note.

Thank you for your valuable feedback!

Please note that although we cannot respond to feedback, our team will use your comments to improve the experience.

In this document
Community Talks

ABP Studio: The Missing Tool for .NET Developers

15 Aug, 17:00
Online
Watch the Event
Mastering ABP Framework Book
Mastering ABP Framework

This book will help you gain a complete understanding of the framework and modern web application development techniques.

Learn More