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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T08:41:27+00:00 2026-06-17T08:41:27+00:00

I have some problem to Figure out how to use LINQ to SQL in

  • 0

I have some problem to Figure out how to use LINQ to SQL in .ashx file to generate json?
I am able to generate json using this code but I need to select TaskName and createdOn columns. can someone help me how to select TaskName and createdOn columns to generate json?

        //DataClasses1DataContext db = new DataClasses1DataContext();
        //var tasksCreatedOm = from c in db.Tasks
        //                     select c.createdOn;

        //the bloack will get all data in table 
        context.Response.ContentType = "text/json";
        context.Response.Write(new SchedulerAjaxData(new  DataClasses1DataContext().Tasks));

My Tasks Class
enter image description here

  • 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-06-17T08:41:30+00:00Added an answer on June 17, 2026 at 8:41 am

    Try something like the following (untested):

    using(DataClasses1DataContext db = new DataClasses1DataContext())
    {
        var tasksCreatedOn = from c in db.Tasks
                            select new { c.taskName, c.createdOn };
    
        // This block will get all data in table 
        var serializer = new JavaScriptSerializer();
        context.Response.ContentType = "text/json";
        context.Response.Write(serializer.Serialize(tasksCreatedOn));
    }
    

    First I projected your Tasks into an anonymous type containing taskName and createdOn. Then I used the JavaScriptSerializer to serialize them to JSON. I also added a using block so that the DataContext is disposed of properly.

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

Sidebar

Related Questions

I have some problem trying to figure out this: I have a set of
I have some problem with this mongoid. It's my first time to use mongoDB,
I am hitting this problem for some time now and I can't figure out
I have some problem to figure out how I can maintain the pipe and
I have some problem to get the utf-8 string from PHP using jQuery $.load()
I have some problem with the cursor when using JOprionPane. I set a cursor
A simple question I'm sure, but I can't figure it out. I have some
I have a problem here that i can't seem to figure out, till now
I'm trying to figure out a Java regex problem that I'm having. This is
I have some SQL written up to address my problem but it is not

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.