Click here to Skip to main content
15,920,111 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
C#
DataTable dtPurity = new DataTable();
dtPurity.Columns.Add("PurityID") ;
dtPurity.Columns.Add("PurityRate");


Please Anyone help me to add primarykey to Column PurityID
Posted
Updated 25-Aug-11 0:54am
v4

 
Share this answer
 
Comments
walterhevedeich 25-Aug-11 3:55am    
Nice link. 5+
Set DataTable.PrimaryKey
C#
DataTable dtPurity = new DataTable();
DataColumn column = dtPurity.Columns.Add("PurityID") ;
dtPurity.Columns.Add("PurityRate");
dtPurity.PrimaryKey = new[] {column};
 
Share this answer
 
Comments
walterhevedeich 25-Aug-11 3:55am    
Looks good. 5+
You can do this:
C#
DataColumn[] keys = new DataColumn[1];
keys[0] = dtPurity.Columns["PurityID"];
dtPurity.PrimaryKey = keys;
 
Share this answer
 
Comments
walterhevedeich 25-Aug-11 3:56am    
Correct. 5+

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



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