Just downloaded the latest llblgen for use with my vs 2008... finally decided to give up coding the entire project and let an ormapper save me time!
I have a Languages table.
I have created a Windows form that has a listview that will display all the languages
I have a button that allows me to Add a new language
this allows a language being added
Dim Languages As New LanguageEntity
Languages.Name = txt_LanguageName.Text
Languages.Save()
if i run Languages.GetDbCount() i get 1... since i added 1 language... however doing something like this
I want to do something like...
Dim Languages As New LanguageCollection
Languages.GetList()
returns a collection with nothing in it....
i will be using a for each _item as.... in Languages.GetList() .......
to populate a listview...
I will have quite a few drop downs or listviews here and there... any suggestions on how i can get the getlist to work? or if i should be doing things differently? should i create views?