SqlServerSpecificCreatorCreateTemporalTablePredicate Method  | 
 
            Creates the temporal table predicate fragment for the predicateType specified
            
 
    Namespace: 
   SD.LLBLGen.Pro.DQE.SqlServer
    Assembly:
   SD.LLBLGen.Pro.DQE.SqlServer (in SD.LLBLGen.Pro.DQE.SqlServer.dll) Version: 5.9.0.0 (5.9.0)
Syntaxpublic override string CreateTemporalTablePredicate(
	TemporalTablePredicateType predicateType,
	string directive,
	List<DateTime> arguments,
	out List<DbParameter> parameters
)
Public Overrides Function CreateTemporalTablePredicate ( 
	predicateType As TemporalTablePredicateType,
	directive As String,
	arguments As List(Of DateTime),
	<OutAttribute> ByRef parameters As List(Of DbParameter)
) As String
Parameters
- predicateType
 - Type: SD.LLBLGen.Pro.ORMSupportClassesTemporalTablePredicateType
Type of the predicate. - directive
 - Type: SystemString
The directive given by the user which is the actual predicate. - arguments
 - Type: System.Collections.GenericListDateTime
The arguments, which can be empty. - parameters
 - Type: System.Collections.GenericListDbParameter
The parameters created. Will be null if no arguments are created. 
Return Value
Type: 
Stringthe ready to use string to be used as temporal table predicate
Implements
IDbSpecificCreatorCreateTemporalTablePredicate(TemporalTablePredicateType, String, ListDateTime, ListDbParameter)
See Also