dotConnect for Salesforce Documentation
Devart.Data.Salesforce Namespace / SalesforceCache Class / Alter Method / Alter(String,String) Method
The name of the table to alter cache settings for.
The new filter value. Allows setting the condition the object must match to be stored in cache. Must be a valid SOQL WHERE clause (without the WHERE keyword).

In This Topic
    Alter(String,String) Method
    In This Topic
    Alters filter for a table in the cache.
    Syntax
    'Declaration
     
    Public Overloads Sub Alter( _
       ByVal tableName As String, _
       ByVal filter As String _
    ) 
    public void Alter( 
       string tableName,
       string filter
    )

    Parameters

    tableName
    The name of the table to alter cache settings for.
    filter
    The new filter value. Allows setting the condition the object must match to be stored in cache. Must be a valid SOQL WHERE clause (without the WHERE keyword).
    See Also