i want to check if the bean that i use as parameter is null using dynamic statements.
<select id="my-query" resultClass="my.package.Results" parameterClass="my.package.Bean">
//MY QUERY
</select>
There is a way to check if my bean is null directly inside the query or i must check if the property is available, null, etc?
Thanks
Yes, you can do that like bellow:
cheers and happy coding!