Browse Source

Merge pull request #21842 from abpframework/docs/patch

Update Entity Cache document
pull/21870/head
maliming 2 years ago
committed by GitHub
parent
commit
3dabed1cda
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 5
      docs/en/framework/infrastructure/entity-cache.md

5
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; }

Loading…
Cancel
Save