Hi,
I'm evaluating technology for a web project my company will be building and I'd like to use LLBLGen with Telerik. This would be an easy decision if we didn't have a requirement that all access to our business services layer be through WCF web services.
I've read all the threads I can find on mixing ASP.net with WCF & LLBLGeb Pro but it is still unclear what all I lose when working across WCF.
I've downloaded the WCF example from your site and ported a limited amout over to ASP.Net, and it more or less works (when doing things from code at least).
My problem is I'd like to be able to use the productivity boosting features that make LLBLGen and Telerik so appealing in the first place like design-time data binding.
The problem is that the collections seem to be non-type-specific like:
// get all customers
_allCustomers = (EntityCollection)MainForm.DalService.GetAllCustomers();
// bind to grid.
customersDataGrid.DataSource = _allCustomers;
What if I want to specify what columns to include unsing all the nifty design-time smart tags and wizards? How is the grid to know that I have a collection of CustomerEntities?
Do all the baked-in AJAX capabilities still work?
Any insights on what I can still do and what is lost when working across WCF would be appreciated.
Also, some more robust examples of working with WCF in an ASP.Net environment would be very helpful as more and more businesses are starting to use it heavily.
-Al