Chili.Opf3 Send comments on this topic.
ToCompiledQuery Method
See Also 
Chili.Opf3.Query Namespace > Expression Class : ToCompiledQuery Method




storage
Storage that is used to compile the ObjectExpression.
Compiles the ObjectExpression to a CompiledQuery. Compiled Queries can only be executed on the type of storage they have been compiled for.

Syntax

Visual Basic (Declaration) 
Public Function ToCompiledQuery( _
   ByVal storage As IStorage _
) As CompiledQuery
Visual Basic (Usage)Copy Code
Dim instance As Expression
Dim storage As IStorage
Dim value As CompiledQuery
 
value = instance.ToCompiledQuery(storage)
C# 
public CompiledQuery ToCompiledQuery( 
   IStorage storage
)
Managed Extensions for C++ 
public: CompiledQuery* ToCompiledQuery( 
   IStorage* storage
) 
C++/CLI 
public:
CompiledQuery^ ToCompiledQuery( 
   IStorage^ storage
) 

Parameters

storage
Storage that is used to compile the ObjectExpression.

Exceptions

ExceptionDescription
ArgumentNullExceptionStorage is null.

Requirements

Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family

See Also