This question belongs in the "
DevForce
Classic Edition Topics" forum, not the Silverlight forum.
But to answer your question, yes, you can.
In your business object you can add this:
VB:
Private _newWhereClause As String = "WHERE CLAUSE HERE"
Public Overrides ReadOnly Property SqlWhereClause() As String
Get
Return _newWhereClause
End Get
End Property
C#:
private string newWhereClause = "WHERE CLAUSE HERE";
public override string SqlWhereClause()
{
get
{
return newWhereClause;
}
}