So Nullable fields on TypedViews always return the default value instead of null. And I need to use the IsXNull() method to check for null.
Is there a way maybe by changing the generation template to allow the property getters to actually return nullable values? The reason is I am using a mapper that maps the TypedView Rows to DTOs, and of course i would like to have those properties returning null without having to use for the IsNull method all the time in my mapping logic.
Any Idea?
Thanks
Luis