jump_912 wrote:
like my past experience with hibernate, it support few flavours when come to data accessing. object search, hibernate query language and the expression method. so i want to find out if llblgen pro do have its own query language aside from predicate method.
That IS LLBLGenPro's language
. It uses a typed system to form filters (predicate expressions and relation collections, as a WHERE clause is an expression of predicates for example), not a string based system ala hibernate which breaks at runtime when a name changes instead of at compile time.
btw, i also having problem when using llblgen pro data object in web service. due to the serialization, all EntityCollection will be converted to dataset and send to the client. is there any workaround so that the entity and collection will actually pass thru the web proxy to the client as it is? or my only choice were to be the .net remoting?
That's indeed an issue, the only option you have is what MS tells everyone to do: alter the generated proxy classes
. Though you can also opt for a true message format and create these in your code, for example based ona contract-first policy. That's more preferable than passing around XML which are directly produced from objects or datasets. True messages are more SOA and the preferred way to do SOA. (MS is also aware of that now thankfully).
If you're writing the client and the server, remoting is preferred, as it's easier for you to work with.