SqlVector<T> Struct 
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents a vector value in SQL Server.
generic <typename T>
 where T : value classpublic value class SqlVector : System::Data::SqlTypes::INullablepublic readonly struct SqlVector<T> : System.Data.SqlTypes.INullable where T : structtype SqlVector<'T (requires 'T : struct)> = struct
    interface INullablePublic Structure SqlVector(Of T)
Implements INullableType Parameters
- T
- Inheritance
- 
				SqlVector<T>
- Implements
Constructors
| SqlVector<T>(ReadOnlyMemory<T>) | Constructs a vector with the given values. | 
Properties
| IsNull | Indicates whether a structure is null. This property is read-only. | 
| Length | Returns the number of elements in the vector. | 
| Memory | Returns the vector values as a memory region. No copies are made. | 
| Null | Represents a null instance without any attributes. | 
Methods
| CreateNull(Int32) | Constructs a null vector of the given length. SQL Server requires vector arguments to specify their length even when null. |