Click here to Skip to main content
15,892,059 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
Hii

I 'm creating a REST service in which I want to insert data in SQL .But my problem is I have some of the parameters to insert in one class and some of the parameters in other class.Actually in my project I have something like this:I have a class 'Information'.In this 'Information' class I have another class 'Employee'..and in this 'Employee' i have a class 'Customer'


SQL
public class Information

{

public Employee EmployeeInfo{get;set;}

}

public class Employee

{

public Customer CustomerInfo{get;set;}

public string EmployeeName{get;set;}

public string EmployeeId{get;set;}

}

public class Customer

{

public string CustomerName{get;set;}

public string CustomerId{get;set;}

}




Now I want to insert these 4 parameters(CustomerName,CustomerId,EmployeeName,EmployeeId) into one SQL table(i.e Details).

I couldnot understand how to construct webinvoke attribute and method and post the data to cRESTclient.

any help would be appreciated....
Posted

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