PostgreSqlFunctionsIsOverlappedByT Method (T, T) | 
 
            Will generate an array1 && array2 fragment in the SQL query using the mapping of this function. Returns true if the arrays share at least one
            common element 
            
 
    Namespace: 
   SD.LLBLGen.Pro.DQE.PostgreSql
    Assembly:
   SD.LLBLGen.Pro.DQE.PostgreSql (in SD.LLBLGen.Pro.DQE.PostgreSql.dll) Version: 5.10.0.0 (5.10.0)
Syntaxpublic static bool IsOverlappedBy<T>(
	this T[] array1,
	T[] array2
)
<ExtensionAttribute>
Public Shared Function IsOverlappedBy(Of T) ( 
	array1 As T(),
	array2 As T()
) As Boolean
Parameters
- array1
 - Type: T
The first array - array2
 - Type: T
The second array 
Type Parameters
- T
 
Return Value
Type: 
BooleanUsage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type . When you use instance method syntax to call this method, omit the first parameter. For more information, see 
Extension Methods (Visual Basic) or 
Extension Methods (C# Programming Guide).
RemarksFor Linq
See Also