Edhy,
I feel like we keep going around in circles here. I have already told you, in more than one post, that we will consider adding some of this functionality down the road. Developers create massive applicatons, everyday, including ourselves, without letting this slow us down. It is a very simple property to set...this is not a "show-stopping" request. You are coming from a data-driven environment...VFP. We too came from VFP and have implemented logic into the framework with many of the good ideas that they had...the request you are making is coming from a data-dictionary environment which using thi same logic would be suicide in a large application in a disconnected data environment.
We WILL at some point add additional functionality that will bring in field lengths. Though this should never have to be checked at the BO level...though you could do it this way, it is really pointless as you can set the MaxLength on a textbox to prevent this from ever getting to this point instead of the end-user seeing another error or warning. So this logic is not as simple as you keep bringing up...because this 1.) needs to be optional 2.) impemented at the control level which means any control that supports text entry will need to support this logic, thus making 3rd party controls more complex. 3.) Needs to provide support for all environments versus just our controls, etc. 4.) This will require support for al database types, not just SQL Server and so it will entail checking for VarChar, NVarChar, and support for SQL Server, Oracle, DB2, VFP, Access, OLEDB, etc.
When developing a framework and trying to appeal to the masses, it is best to make the change so that it will be respected in the broad spectrum.
Finally, if this is such a huge piece of your application, you could implement this logic in less than an hour. If you want to take the BO approach, then inherit the BusinessLayer and create your own BoBase (which is a good idea anyway) and then add this logic to check for field lengths for your specific data type....though I would still recommend doing this at the control level.
I hope this helps you understand that I have heard you on all of your other posts and help you to understand that you can add this logic yourself very easily since it will not need to support all data types, etc. We try to listen to all of our customers and meet their needs. Especially in areas where there is a high-demand request...which though this is not in high-demand, we do see that there could be some things that help speed development up in the long-term. Thanks for your input and understanding.