Default String Representation and asString
No edit summary
No edit summary
 
(6 intermediate revisions by 3 users not shown)
Line 1: Line 1:
<message>Write the content here to display this box</message>
You can use asString on all objects in OCL (the same way as you can in C#, for example).
You can use asString on all objects in OCL (the same way as you can in C#, for example).


Line 4: Line 5:


====== Note on Performance ======
====== Note on Performance ======
asString and the DefaultStringRepresentation are not [[Derived attributes & associations|subscribed]]. This means that every time the asString is used, it needs to be reevaluated. For better performance, create a [[Derived attributes & associations|derived attribute]] - for example, "Presentation" with the OCL - use self.Presentation in DefaultStringRepresentation.
asString and the DefaultStringRepresentation are not [[Training:Derived attributes & associations|subscribed]]. This means that every time the asString is used, it needs to be reevaluated. For better performance, create a [[Training:Derived attributes & associations|derived attribute]] - for example, "Presentation" with the OCL - use <code>self.Presentation in DefaultStringRepresentation</code>.


Also, avoid using asString in other expressions that need to have high performance because they cannot subscribe properly if you use asString in the expression tree.
Also, avoid using asString in other expressions that need to have high performance because they cannot subscribe properly if you use asString in the expression tree.
Line 10: Line 11:
Keyword: Defaultstringrepresentation, asString
Keyword: Defaultstringrepresentation, asString
[[Category:OCL]]
[[Category:OCL]]
{{Edited|July|12|2025}}

Latest revision as of 05:22, 22 January 2025

This page was created by Lars.olofsson@mdriven.net on 2022-07-16. Last edited by Stephanie@mdriven.net on 2025-01-22.

You can use asString on all objects in OCL (the same way as you can in C#, for example).

When you use asString, the DefaultStringRepresentation is used to get the result string.

Note on Performance

asString and the DefaultStringRepresentation are not subscribed. This means that every time the asString is used, it needs to be reevaluated. For better performance, create a derived attribute - for example, "Presentation" with the OCL - use self.Presentation in DefaultStringRepresentation.

Also, avoid using asString in other expressions that need to have high performance because they cannot subscribe properly if you use asString in the expression tree.

Keyword: Defaultstringrepresentation, asString