Browse Source
Merge pull request #21842 from abpframework/docs/patch
Update Entity Cache document
pull/21870/head
maliming
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
5 additions and
0 deletions
-
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<Guid> |
|
|
|
{ |
|
|
|
public Product(Guid id) |
|
|
|
{ |
|
|
|
Id = id; |
|
|
|
} |
|
|
|
|
|
|
|
public string Name { get; set; } |
|
|
|
public string Description { get; set; } |
|
|
|
public float Price { get; set; } |
|
|
|
|