TechTalk Genome v4.2

Sql.Between Method 

Gets a value indicating if a scalar expression is within a range of values.

public static bool Between(
   object obj,
   object min,
   object max
);

Parameters

obj
An object to be investigated.
min
An object of the same type as obj.
max
An object of the same type as obj.

Return Value

true if obj is greater than or equal to min and less than or equal to max; false otherwise.

If any of the obj, min or max are a null reference, DBNull or NULLfalse is returned.

Requirements

Namespace: TechTalk.Genome

Assembly: TechTalk.Genome (in TechTalk.Genome.dll)

Version: 4.2.4.4

Editions: Professional, Evaluation, Express

See Also

Sql Class | TechTalk.Genome Namespace