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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T19:53:12+00:00 2026-05-13T19:53:12+00:00

I have a class is inherited from DataContext to use Linq. public class Context

  • 0

I have a class is inherited from DataContext to use Linq.

public class Context : DataContext
{
    public Context(string connectionString)
        : base(connectionString)
    {
    }
}


[Table(Name = "TableNameee")]
public class ClassOfTable
{

}

And i have another class which is mapped to a table.
I am using

context.GetTable<ClassOfTable>()

method to retrieve all rows of table which is mapped to ClassOfTable class. But i want to retrieve just one row from the table of the database.
I can use it like this:

ClassOfTable cls = context.GetTable<ClassOfTable>().Where(p=>p.id==1).First();

But this will retrieve every rows of table. And i don’t want to do this. What should i do to take only one row from table?

  • 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-13T19:53:12+00:00Added an answer on May 13, 2026 at 7:53 pm

    It won’t get all the rows of a table, it will just get the 1 row via a where statement in the SQL. Remember that Linq is a deffered execution model, GetTable<T> does’t actually run anything, only when .First() runs is anything called.

    We add this method to our DataContext to do just this often, here it’s in extension form:

    public static T GetById<T>(this DataContext dc, long id) where T : class, IBaseEntity
    {
      return dc.GetTable<T>().Single(t => t.Id == id);
    }
    

    Our interface, which is on every class can be very small for this purpose:

    public interface IBaseEntity
    {
        long Id { get; set; }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have created an inherited class StorageMedium from a base I called DataTypes. StorageMedium
Hello all I have class that inherited from Qtreeview and I implement simple (
I have class MyForm which inherited from QMainWindow . Here's my code: std::auto_ptr<MyForm> pForm(new
As we know in C++ we have class iostream, which is inherited from istream(basic_istream)
Coming from a Delphi background, I am used to be able to have class
Is it possible to expose the DataContext when extending a class in the DataContext?
I have an application using ASP.NET MVC, Unity, and Linq to SQL. The unity
I'm writing an application that loads in records from an XML file and uses
I have a custom ValidationRule that requires access to the ViewModel in order to
I have a number of classes exposed as JAX-RS request handlers, using javax.ws.rs.Path annotations.

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.