Another semi-related question:
In LLBL help it talks about Validation via DependencyInjection, how does this compare to the Dynamic data approach?
See http://www.llblgen.com/tinyforum/Messages.aspx?ThreadID=14078&HighLight=1
And how do I take advanage of the Dynamic Data approach for validation? in my above example, as I shouldn't need to create Validation classes or use IDataErrorInfo I believe.
For example the Dynamic Data approach is to use partial classes, with meta data such as:
[Required(ErrorMessage = "Name is required.")]
[StringLength(20, ErrorMessage = "Name must be 20 characters or less.")]
public object Name { get; set; }
Now this is great that in theory the view can use this to present the fields as required, etc. But with it, how would LLBL know of its existance and use it, and how will the validation routines see it as well in LLBL ?
_Personal opinion: if LLBL can fully leverage Dynamic data, then its a great benefit to LLBL as theoretically its less code they need to manage, and they get the benefits :-) Now this is assuming that Dynamic Data is the cats-ass. _