From 8039769d58a0f93f0da9b551a0ea1808de4308e3 Mon Sep 17 00:00:00 2001 From: liangshiwei Date: Wed, 8 Jan 2025 15:54:17 +0800 Subject: [PATCH] Update entity-cache.md --- docs/en/framework/infrastructure/entity-cache.md | 5 +++++ 1 file changed, 5 insertions(+) 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; }