I'm using Adapter with LLBLGen v2.5.
Playing around with WCF as more of a test right now and I got things to communicate and all is fine. No bugs - just testing things.
Now for some larger questions to see if WCF is a correct way to do what I want to do.
I'm developing the back-end and would like to give my UI developers Intellisense on objects I create in the back-end. Right now I can transmit IEntity2 and IEntityCollection2 but I don't want the front-end developer to have to re-iterate over the fields collection of those objects. Do I need to hand the main back-end DLL as a reference to the end-developer for a cast? I was trying to avoid doing that. I just wanted interfaces. Can I just use my
Using the example from the help file:
// C#
ChannelFactory<IWCFExample> channelFactory =
new ChannelFactory<IWCFExample>("WCFExampleServer");
IWCFExample server = channelFactory.CreateChannel();
// Fetch an entity
IEntity2 c = server.GetCustomer("CHOPS");
// Fetch a collection
IEntityCollection2 customers = serverTest.GetCustomers();
What if my customer entity has a property (I'm using lots of partial classes) called "CreditLimit". How would I have c.CreditLimit in the example above?
Sorry if this seems like a totally stupid question.
Thanks,
-Luke