See thread
http://www.llblgen.com/tinyforum/Messages.aspx?ThreadID=1803
I know I can get field length with syntax like this (in adapter)
int maxLength = myCustomer.Fields[(int)CustomerFieldIndex.CompanyName].MaxLength;
First, this does not appear to be static, so it requires an entity instance. Second, the syntax is not exactly simple.
What would be nice would be a static property for each field in an entity, such as
Customer.CompanyNameMaxLength
It's great that the entity will validate the length when I set the field. The reason it would be nice to have this, though, is in those cases where some information is being collected from the user, but the entity is not being set until sometime later. For example, I am building a fairly complex wizard. Based on user choices, I will make sure he doesn't leave certain fields empty. But I'm not validating the length of his input. Later, after he has clicked on 'Finish', the calling code will access all the data in the wizard through its properties and start assembling the entities. At that point if an exception is thrown it will be a real pain to figure out exactly which field it was, and show the wizard again with focus on the proper page, etc.
The wizard knows about entities (it has to fill comboboxes from entity collections), and it would be very simple to just add to my validation logic inside the wizard the checks on string lengths.
This could be something optionally generated in the designer, so folks who don't need it don't generate it.
What do you think Frans? If you don't think it's a good idea maybe I will take my first stab at customizing the code generation process (ach!!! need more hours in the day!!
)