Browse Source

Update Object-Extensions.md

pull/10856/head
Halil İbrahim Kalkan 4 years ago
committed by GitHub
parent
commit
85aa8a6025
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      docs/en/Object-Extensions.md

6
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)

Loading…
Cancel
Save