Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeArchived Discus...Archived Discus...Developing Under Previous Versions of .NETDeveloping Under Previous Versions of .NETASP.Net 2.0ASP.Net 2.0Inconsistent seperator on ParentKey field in ListsInconsistent seperator on ParentKey field in Lists
Previous
 
Next
New Post
7/29/2009 12:50 AM
 

I created a Child and Parent list by creating a list from Host..Lists and then creating another with the original one set as the parent.

Now when I run select * from vw_Lists on the child list the results contain a column ParentKey with the value "testparent.thisvalue".  This Key has been generated by the SQL function GetListParentKey(ParentID, ListName, N'ParentKey', 0) which is called inside that view.

Suppose now I want to get my child list values in code.  I call
Dim LC As New ListController
Dim ParentEntry As ListEntryInfo = LC.GetListEntryInfo("ParentList", "ListValue")
Dim EntryCollection As ListEntryInfoCollection = LC.GetListEntryInfoCollection("ChildList", ParentEntry.Key)

The problem I now encounter is that I don't get any results from the last line.  This is because ParentEntry.Key has a value of "testparent:thisvalue"  (Note the semicolon) and ParentEntry.ParentKey is blank
This semicolon comes from the code in DotNetNuke.Common.Lists.ListEntryInfo for Key property.

I've tried this in 4.9.4 and 5.1.1 .  I've raised a bug at http://support.dotnetnuke.com/issue/ViewIssue.aspx?ID=10456&PROJID=23 but was wandering if anyone knew if I was doing something wrong with the way I'm calling the functions.

 
New Post
7/31/2009 6:37 PM
 

You are not quite using the API correctly

Instead of

Dim LC As New ListController
Dim ParentEntry As ListEntryInfo = LC.GetListEntryInfo("ParentList", "ListValue")
Dim EntryCollection As ListEntryInfoCollection = LC.GetListEntryInfoCollection("ChildList", ParentEntry.Key)

You should use

Dim LC As New ListController
Dim ParentList As ListInfo = LC.GetListInfo("ParentList", "ListValue", PortalId)
Dim EntryCollection As ListEntryInfoCollection = LC.GetListEntryInfoCollection("ChildList",
ParentList .ParentKey)

This is the logic used in the List Editor itself.  see DesktopModules\Admin\Lists\ListEntries.ascx.vb

 
Previous
 
Next
HomeHomeArchived Discus...Archived Discus...Developing Under Previous Versions of .NETDeveloping Under Previous Versions of .NETASP.Net 2.0ASP.Net 2.0Inconsistent seperator on ParentKey field in ListsInconsistent seperator on ParentKey field in Lists


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out