diff --git a/docs/en/framework/infrastructure/entity-cache.md b/docs/en/framework/infrastructure/entity-cache.md index 03d0e8c548..64a03ad4c4 100644 --- a/docs/en/framework/infrastructure/entity-cache.md +++ b/docs/en/framework/infrastructure/entity-cache.md @@ -12,6 +12,11 @@ ABP provides an entity caching system that works on top of the [distributed cach ```csharp public class Product : AggregateRoot { + public Product(Guid id) + { + Id = id; + } + public string Name { get; set; } public string Description { get; set; } public float Price { get; set; }