Click here to Skip to main content
15,867,964 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to find specific column exists or not in the parameter Object. Because i am passing parameter as a Object using 'POST' method in WCF Service. Can anyone help me how to find it out?

for eg:
C#
public static [Class Name] Update ([class Name] Object)
{
   string updateCommand="";
   updateCommand = " Update employee set employeeid = '" + object.employeeid + "'";
   return updateCommand;
}

here i want to check the employeeid column name exists in the object or not. if it is not exists in the object , how to write the code?

thanks for your help in advance.
Posted
Updated 11-Jan-13 6:45am
v2

1 solution

Do you mean you want to check if the type of the object contains EmployeeId property? If that's true, you can use reflection to investigate the properties. For example:
C#
if (NameOfTheParameter.GetType().GetProperty("EmployeeId") != null) { ...

For more information, see Type.GetProperty Method[^]
 
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


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