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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T12:02:59+00:00 2026-05-22T12:02:59+00:00

want to be able to do something like this below. But I have a

  • 0

want to be able to do something like this below. But I have a problem because the GetStudentByName method does not know what type data is.

Im able to write the “data = data.Where(s => s.name == “Some name”);” without any problems. But how do i divide it into different methods?

    private IQueryable GetStudents()
    {
        var data = from a in db.Anvandning
                   select a;
        return data;
    }
    public IQueryable GetStudentByName(string name) 
    {
        var data = GetStudents();

        data = data.Where(s => s.name == name);     <-- Error occurs
        return data;
    }
  • 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-22T12:02:59+00:00Added an answer on May 22, 2026 at 12:02 pm

    You need to use IQueryable<T> instead of IQueryable, e.g

    private IQueryable<Student> GetStudents()
    {
        var data = from a in db.Anvandning
                   select a;
        return data;
    }
    
    public IQueryable<Student> GetStudentByName(string name) 
    {
        var data = GetStudents();
    
        data = data.Where(s => s.name == name);
        return data;
    }
    

    Note that these methods can be written more simply:

    private IQueryable<Student> GetStudents()
    {
        return db.Anvandning.Select(x => x);
    }
    
    public IQueryable<Student> GetStudentByName(string name) 
    {
        return GetStudents().Where(s => s.name == name);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want something like a canvas, but where i'd be able to manipulate pixels
I want to be able to access custom URLs with apache httpclient. Something like
I want to write something like this: type NumExp = Num of float type
I have been studying the modalforms & inline formsets but am not able to
I want to be able to pass something into an SQL query to determine
I want to be able to download a URL in C++. Something as simple
The Problem It's something I came across a while back and was able to
Answer Summary: Solved this problem using Jon Skeet's answer below. Here is the finished
I have asked this question about using the a Linq method that returns one
I have some JS you'll see below. I want the inner class object to

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.