You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
abp/docs/en/Migration-Guides/Abp-5_0.md

599 B

ABP Framework v4.x to v5.0 Migration Guide

MongoDB

ABP Framework will serialize the datetime based on AbpClockOptions start from 5.0, before DateTime values in MongoDB are always saved as UTC.

You can disable this behavior by configure AbpMongoDbOptions.

services.Configure<AbpMongoDbOptions>(x => x.UseAbpClockHandleDateTime = false);

Angular UI

See the Angular UI Migration Guide.