Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 847459
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T06:47:16+00:00 2026-05-15T06:47:16+00:00

I’m using subsonic 2.2 with .net 2.0 and I’m having an error when I

  • 0

I’m using subsonic 2.2 with .net 2.0 and I’m having an error when I included “Group By”.

Originally I had this code, and it worked perfectly:

    SqlQuery etResourceTitle = new Select(ResTitleOngoing.Columns.ResourceTitleID,
                                          ResTitleOngoing.Columns.ResourceTitle, 
                                          VenVendor.Columns.Title,
                                          ResTitleOngoingStatus.Columns.Status).From(Tables.ResTitleOngoing);

    etResourceTitle.InnerJoin(ResTitleOngoingStatus.ResourceTitleIDColumn, ResTitleOngoing.ResourceTitleIDColumn);
    etResourceTitle.LeftOuterJoin(VenVendor.VendorIDColumn, ResTitleOngoing.VendorIDColumn);

    etResourceTitle.OrderAsc(ResTitleOngoing.Columns.ResourceTitle);

    etResourceTitle.ExecuteDataSet();

Then I added “Group By”, so this is my code:

    SqlQuery etResourceTitle = new Select(Aggregate.GroupBy(ResTitleOngoing.Columns.ResourceTitleID),
                                          Aggregate.GroupBy(ResTitleOngoing.Columns.ResourceTitle), 
                                          Aggregate.GroupBy(VenVendor.Columns.Title),
                                          Aggregate.GroupBy(ResTitleOngoingStatus.Columns.Status)).From(Tables.ResTitleOngoing);

    etResourceTitle.InnerJoin(ResTitleOngoingStatus.ResourceTitleIDColumn, ResTitleOngoing.ResourceTitleIDColumn);
    etResourceTitle.LeftOuterJoin(VenVendor.VendorIDColumn, ResTitleOngoing.VendorIDColumn);

    etResourceTitle.OrderAsc(ResTitleOngoing.Columns.ResourceTitle);

    etResourceTitle.ExecuteDataSet();

I got the error: “Ambiguous column name ‘ResourceTitleID’.”

Executing etResourceTitle.BuildSqlStatement(); i got:

SELECT ResourceTitleID AS ‘GroupByOfResourceTitleID’,
ResourceTitle AS ‘GroupByOfResourceTitle’,
Title AS ‘GroupByOfTitle’,
Status AS ‘GroupByOfStatus’
FROM [dbo].[RES_TitleOngoing]
INNER JOIN [dbo].[RES_TitleOngoingStatus] ON [dbo].[RES_TitleOngoing].[ResourceTitleID] = [dbo].[RES_TitleOngoingStatus].[ResourceTitleID]
LEFT OUTER JOIN [dbo].[VEN_Vendor] ON [dbo].[RES_TitleOngoing].[VendorID] = [dbo].[VEN_Vendor].[VendorID]
GROUP BY ResourceTitleID, ResourceTitle, Title, Status
ORDER BY ResourceTitle ASC

So, someone can help me with this error.

Thanks
Alan

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T06:47:17+00:00Added an answer on May 15, 2026 at 6:47 am

    Both your tables RES_TitleOngoing and RES_TitleOngoingStatus contain a column named ResourceTitleID but you specified just ResourceTitleID in your group by part so the sql server does not know which ResourceTitleID you want to group.

    Note:

    ResTitleOngoing.Columns.ResourceTitleID
    

    just returns a string “ResourceTitleID”

    You should try one of these instead:

    Aggregate.GroupBy(ResTitleOngoing.ResourceTitleIDColumn)
    Aggregate.GroupBy(ResTitleOngoing.Schema.QualifiedName + "."
                      + ResTitleOngoing.Columns.ResourceTitleID)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.