Browse Source

Remove `JsonInclude`.

pull/15013/head
maliming 4 years ago
committed by GitHub
parent
commit
4cc7b62499
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      framework/test/Volo.Abp.TestApp/Volo/Abp/TestApp/Testing/EntityCache_Tests.cs

5
framework/test/Volo.Abp.TestApp/Volo/Abp/TestApp/Testing/EntityCache_Tests.cs

@ -102,9 +102,6 @@ public class Product : FullAuditedAggregateRoot<Guid>
Price = price;
}
[JsonInclude]
public override Guid Id { get; protected set; }
public string Name { get; set; }
public decimal Price { get; set; }
@ -119,4 +116,4 @@ public class ProductCacheItem
public string Name { get; set; }
public decimal Price { get; set; }
}
}

Loading…
Cancel
Save