C# Code for How to set readonly property to Id(database)
value?

Answers were Sorted based on User's Feedback



C# Code for How to set readonly property to Id(database) value?..

Answer / karthikeyan

String connectionString = @"Data
Source=.\SQLExpress;Initial Catalog=Nwind;Integrated
Security=SSPI";
SqlConnection con = new SqlConnection(connectionString);
string conString = "Select * From Customers";
SqlDataAdapter dataAdpter = new SqlDataAdapter(conString,
con);
DataSet ds = new DataSet();
dataAdpter.Fill(ds);
ds.Tables[0].Columns[0].ReadOnly = true;
dataGridView1.DataSource = ds.Tables[0];

Is This Answer Correct ?    10 Yes 1 No

C# Code for How to set readonly property to Id(database) value?..

Answer / deepak ray

Just retrieve the id from database using reader or dataset
and store the id in a string.
and
set the string in a public readonly property like this.


string _UserId;
public string UserId
{ get { return _UserId; } }

SqlDataReader dr = null;
dr = cmd.ExecuteReader();
if (dr.HasRows)
{
dr.Read();
_UserId = dr["UserId"].ToString();
}
dr.Close();
dr.Dispose();

Is This Answer Correct ?    10 Yes 6 No

Post New Answer

More C Sharp Interview Questions

What is difference between sleep () and wait ()?

0 Answers  


What is difference between asp net and c# net?

0 Answers  


How do you generate documentation from the C# file commented properly with a command-line compiler?

1 Answers  


What is concatenation and when should it be used?

0 Answers  


What are the benefits of using the aggregate method in linq?

0 Answers  






Give an example of a ctype.

0 Answers  


What is a singleton unity?

0 Answers  


What is difference between constants and readonly in c#?

0 Answers  


How is lazy loading achieved?

0 Answers  


What is the difference between CONST and READONLY?

0 Answers   BirlaSoft,


What is the difference between string and stringbuilder in c#?

0 Answers  


Is c# an open source?

0 Answers  


Categories