Set of selected fields that are non-nullable, which can be used for search fields that require non-nullable fields.
To use a nullable field as a search field, use an EntityLoaderSearchFieldSQLFragmentFnSpecification with appropriate SQL
to handle null values, such as COALESCE(field_name, '') to treat nulls as empty strings for searching.
Set of selected fields that are non-nullable, which can be used for search fields that require non-nullable fields. To use a nullable field as a search field, use an EntityLoaderSearchFieldSQLFragmentFnSpecification with appropriate SQL to handle null values, such as
COALESCE(field_name, '')to treat nulls as empty strings for searching.