Click here to Skip to main content
15,896,726 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hello,

Task: Application to create and Load Appointments to a Scheduler Control

So far, I have created appointments and saved them into my SQL 2005 Database.

Then, I retrieve them using a Stored Procedure as shown below.

I use my C# code (as shown below) to load data to the "Datasource" property.

Now, my task is to convert the "ds.Tables" to a "List" and need some help in doing this.

My Code
C#
private void LoadAppointments()
        {
            var conn = new SqlConnection(ConnectionString);
            var adapter = new SqlDataAdapter("LoadAppointment", conn);
            var ds = new DataSet();
            adapter.Fill(ds);
            schedulerStorage1.Appointments.DataSource = ds.Tables[0];
        }

My SQL 2005 Stored Procedure
SQL
USE [Scheduler]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[LoadAppointment]
AS
SELECT * FROM [Scheduler].[dbo].[tblAppointments]
GO
Any help regarding this would be appreciated a lot!! Thanks in advance
Posted
Comments
Babu Kumar 4-Mar-13 7:04am    
Hi Arun,

What is the error you got?

Regards,
Babu.K

1 solution

List<DataRow> list = dt.AsEnumerable().ToList();
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900