I'm just getting started with scaffolds (using Transfer ORM), and I'm wondering if anyone can point me to some more information about how the validation works, and how I can customize it.
I have a field in a table that is nullable, but I keep getting an error saying it's required when I don't pass it. How can I control what is required?
Figured it out! I'm a Transfer n00b, I didn't realize that there was a "nullable" attribute for the property. Once I made the property nullable in my Transfer.xml, it worked fine. I was looking at other blog posts that used Reactor, and thought that making the database field nullable was what I needed to do.