BlobNvlExpression is used specify how to treat a NULL value in a Blob property (or field or variable). If the Blob appears to be NULL, it will be assigned a default value or a specified value.
public ReadOnlyBlobProperty BlobNvlExample
{
get
{
return CalculatedBlobProperty(() =>
Operation.EditItem.Image.Nvl(CommonImages.OkIcon.ConvertToBlob()));
}
}
The example above works as follows.
BlobNvlExample.Operation.EditItem.Image is evaluated, by adding .Nvl.BlobNvlExample will be assigned the value after Nvl between parentheses (CommonImages.Accept.ConvertToBlob()), which is a Blob.
Article ID: 227
Created: Thu, Dec 5, 2019
Last Updated: Mon, Jan 13, 2020
Online URL: https://wiki-ai-framework.abstract-it.nl/article/blobnvlexpression-227.html