Dear llblgen
I have now spend some time how I can make a webserice, with parameters for construction of a generel filter. I use version 2 of llblgen, adapter twoclasses pattern, c#.
I wan't the following webservice
The problem is that the client, that will call the webservice must not make a reference to ORMSupportClasses, only the <mynamespace>.EntityClasses, FactoryClasses, HelperClasses and RelationClasses.
I need a filter like <field> <op> <value> (e.q. the functionality of FieldCompareValuePredicate class)
[WebMethod]
public EntityCollection getFirmsByField(int fieldindex,int op,object value,int? MaxNumberOfRowsToReturn)
op is a int version of ComparisonOperator enum
or
public EntityCollection getFirmsByField(string fieldname,int op,object value,int?
MaxNumberOfRowsToReturn)
Please help a beginner