From f039c5f13f5ebcef2cee57855780924aaa51ae6e Mon Sep 17 00:00:00 2001 From: Super Date: Sat, 21 Mar 2020 00:56:37 +0800 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8f550bd..ad1e558 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ An abp application module that allows users to send private messages to each oth 1. Add `options.ConventionalControllers.Create(typeof(PrivateMessagingApplicationModule).Assembly);` to `Configure(options => { ... });` in your host module (It is usually Web project or HttpApi.Host project). - 1. Add `builder.ConfigurePrivateMessaging();` to `OnModelCreating` in `MyProjectMigrationsDbContext.cs`. + 1. Add `builder.ConfigurePrivateMessaging();` to OnModelCreating method in `MyProjectMigrationsDbContext.cs`. 1. Add EF Core migrations and update your database. See: [ABP document](https://docs.abp.io/en/abp/latest/Tutorials/Part-1?UI=MVC#add-new-migration-update-the-database).