TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Guest User
Tech Writer
357
120.7k
Can anyone explain this method please
Feb 22 2012 9:11 AM
A Take method that extracts property values from the business object and adds these to an object array.
private Object[] Take(Customer customer)
return new Object[]
{
"@CustomerId", customer.CustomerId,
"@CompanyName", customer.Company,
}
From this I can see that the method returns a new object array which contains comma seperated values, one string and one the actual property of the customer class, but I cant see how these are binded or are they not? is it simply a name\key, value pair on the returned collection?
Reply
Answers (
1
)
Save Session variables from business object
Web service as opposed to a non-serviced