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

  • Home
  • SEARCH
  • 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 a class that is inherited from an abstract base class. class CStateBase
How can I change XML-element name for field inherited from base class while doing
i have an application class inherited from QtGui.QDialog. I have to reload show-function but
I have a parent class and child class (inherited from parent). In the child
In my iPad App, I have one custom class inherited from UIButton. I am
I have QStringListModel QStringListModel* blocksModel = new QStringListModel(); And a class inherited from the
I have a winforms form which is inherited from another form. e.g. class StartForm
I have a class that inherits from a base class (this contains a lot
I have a class that inherits from Page, called APage. public abstract class APage:
I have a VectorN class, and a Vector3 class inherited from VectorN (which can

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.