- This topic has 2 replies, 2 voices, and was last updated 6 years, 7 months ago by .
Viewing 2 reply threads
Viewing 2 reply threads
- You must be logged in to reply to this topic.
Hi Kim,
How can I bind an objects property that is a kbmMWNullable? I can bind the lastname from this class, but not the firstname.
TPerson = class
private
FLastName: string;
FFirstName: kbmMWNullable<string>;
public
property FirstName: kbmMWNullable<string> read FFirstName write FFirstName;
property LastName: string read FLastName write FLastName;
end;
Do I need to do something special to make it work?
Hi,
I need to make support for nullable types in SmartBinding. I will have a look at it for a follow up release.
best regards
Kim/C4D
That would be nice because in combination with the orm many objects will have nullable properties I think.