Skip to content

Commit 4615251

Browse files
authored
Update 15/umbraco-cms/customizing/property-editors/property-value-converters.md
1 parent 5fa2e40 commit 4615251

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

15/umbraco-cms/customizing/property-editors/property-value-converters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: A guide to creating a custom Property Value Converter in Umbraco
66

77
A Property Value Converter converts a property editor's database-stored value into another type that is stored in the Umbraco cache. This way, the database stores only essential data. Razor views, the Published Content API, and the Content Delivery API use strongly typed, cleaner models.
88

9-
For example, a Content Picker stores the Key of the picked node in the database. When reading published data, Umbraco returns an IPublishedContent object instead of the Key. This conversion is done by a Property Value Converter.
9+
For example, a Content Picker stores the Key of the picked node in the database. When reading published data, Umbraco returns an `IPublishedContent` object instead of the Key. This conversion is done by a Property Value Converter.
1010

1111
A Property Value Converter has three conversion levels:
1212
* **Source** - The raw data stored in the database; this is generally a `string`.

0 commit comments

Comments
 (0)