Hi,
I was just wondering about something. In the file CustomerService.cs from the project SD.LLBLGEN.Pro.Examples.WCF.Service you have a function called
public IEntity2 GetCustomerWithFullOrders(string customerId)
This function is supposed to return a customer entity - CustomersEntity object.
Why is the function not defined as:
public CustomersEntity GetCustomerWithFullOrders(string customerId)
This seems to be the case throughout the examples - also those that returns or receives entity collections.