Browse Source
Merge pull request #12977 from wangj90/dev
Corrected the obsolete attribute message of EntityDeletingEventData
pull/12987/head
liangshiwei
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
framework/src/Volo.Abp.Ddd.Domain/Volo/Abp/Domain/Entities/Events/EntityDeletingEventData.cs
|
|
|
@ -7,7 +7,7 @@ namespace Volo.Abp.Domain.Entities.Events; |
|
|
|
/// </summary>
|
|
|
|
/// <typeparam name="TEntity">Entity type</typeparam>
|
|
|
|
[Serializable] |
|
|
|
[Obsolete("This event is no longer needed and identical to EntityDeleteEventData. Please use EntityDeleteEventData instead.")] |
|
|
|
[Obsolete("This event is no longer needed and identical to EntityDeletedEventData. Please use EntityDeletedEventData instead.")] |
|
|
|
public class EntityDeletingEventData<TEntity> : EntityChangingEventData<TEntity> |
|
|
|
{ |
|
|
|
/// <summary>
|
|
|
|
|