I have just written short programs for nhibernate and llblgenpro and these are some questions and comments.
-
nhibernate was pretty easy, until you run into lack of documentation on something. The support forum wasn't helpful. But I got the app up and running and populating an infragistics ultragrid. But I'd probably never get a question answered in the forum since I'm a noob.
-
then on to llblgenpro demo. Watched the tutorial flash presentations. Problem is that this is for net2, and I am using net1.1. The data binding isnt the same. There is no BindingSource class.
-
In net 1.1 I found the only way to get the infragistics grid to stop hanging was to set MaxBandDepth to 1. Funky.
-
I added the entitycollection control to the toolbox and set the factory. But there was an error, "Cast not valid" when I dragged it to the form?
-
I had to add the lines, and the associated References:
DataAccessAdapter adapter = new DataAccessAdapter();
adapter.FetchEntityCollection(entityCollection1, null);
to get the grid to show any data. I didn't see this anywhere in the documentation. The 1.1 reference chm is just dry statements of the api, no additional info from what I saw. I had to guess how to do it.
- There seem to be no complete sample projects for net2 or net1.1. There are snippets and example code generation projects, but no real project example source. Did I miss this someplace? This would help a lot.
I think the learning curve for llblgenpro is just as steep as nhibernate. I used the llblgenfree for years and it was great.