Halil İbrahim Kalkan
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
3 deletions
-
docs/en/Object-Extensions.md
|
|
|
@ -9,10 +9,10 @@ ABP Framework provides an **object extension system** to allow you to **add extr |
|
|
|
This is the interface to make a class extensible. It simply defines a `Dictionary` property: |
|
|
|
|
|
|
|
````csharp |
|
|
|
Dictionary<string, object> ExtraProperties { get; } |
|
|
|
ExtraPropertyDictionary ExtraProperties { get; } |
|
|
|
```` |
|
|
|
|
|
|
|
Then you can add or get extra properties using this dictionary. |
|
|
|
`ExtraPropertyDictionary` class is inherited from the `Dictionary<string, object>` class. You can add or get extra properties using this dictionary. |
|
|
|
|
|
|
|
### Base Classes |
|
|
|
|
|
|
|
@ -413,4 +413,4 @@ See the [Entity Framework Core Integration document](Entity-Framework-Core.md) f |
|
|
|
|
|
|
|
## See Also |
|
|
|
|
|
|
|
* [Module Entity Extensions](Module-Entity-Extensions.md) |
|
|
|
* [Module Entity Extensions](Module-Entity-Extensions.md) |
|
|
|
|