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 3981520
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T05:25:11+00:00 2026-05-20T05:25:11+00:00

When I used to use ADO.NET, I used to create TableAdapters which were populated

  • 0

When I used to use ADO.NET, I used to create TableAdapters which were populated using joined queries, so for example the product table adapter would have column for ‘location’ even if the underlying select query joined the product to the location table.

In LINQ, how do I accomplish this? Do I return the columns in the joined query by writing LINQ queries in a ProductsDao class? What type am I returning for binding to the gridview? The problem with retuning the LINQ results back is that I would have thought it would break the consistency of the ProductsDao class (this should only return product rows from the db).

  • 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-20T05:25:11+00:00Added an answer on May 20, 2026 at 5:25 am

    I think the best option is to define classes that represent the joined data you want to return (e.g. ProductDetails) and then return IQueryable<ProductDetails> from your data layer.

    To return queryable, you can write just a simple LINQ query:

    public IQueryable<ProductDetails> GetProducts() {
      return from p in db.Products
             join d in db.Details on p.ID equals d.ID
             select new ProductDetails { p.Name, d.Notes };
    }
    

    This approach has several benefits:

    • You’re not exposing the YourDataContext object directly – it can stay as a private field of the DAO class (if it is short lived) or you can created it as you need it.

    • You’re not exposing the underlying LINQ entities directly (e.g. Product or Details), so the users cannot accidentally mess with your database (unless you give them a way to do that)

    • You’re returning queryable, which just represents a query. When the users add their additional constrains (e.g. where), the query will be composed and you won’t be loading unnecessary data.

    • You can expose only reasonable functionality from the class – for example, if you have only method GetProducts taking categoryID, your users can only fetch products in a given category (which makes it impossible to fetch the entire table from the database)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

All, I have successfully used ADO.NET to make use of asynchronous SQL queries similar
using ado.net tipically we need to define a connectionstring to create a sqlconnection object,
I'm using DAO (been asked not to use ADO.NET) to update an Access database.
I used to use discountasp.net and I can use Visual Studio 2008 to publish
I used to use procedural-style PHP. Later, I used to create some classes. Later,
I used to use Backbone.js as an easy MVC framework which have build-in routing
When it comes to Ado.net connection strings, I have used Initial Catalog attributes at
I am trying to use ADO.Net Codefirst feature of latest Entity Framework 4.0. As
I used the ADO.NET C# POCO Entity Generator Visual Studio add-in to generate POCO
currently I use DataSet to read data from ADO.NET SQL provider, but I read

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.