你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

DataType 结构

定义

定义搜索索引中字段的数据类型。

[Newtonsoft.Json.JsonConverter(typeof(Microsoft.Azure.Search.Serialization.ExtensibleEnumConverter<Microsoft.Azure.Search.Models.DataType>))]
public struct DataType : IEquatable<Microsoft.Azure.Search.Models.DataType>
[<Newtonsoft.Json.JsonConverter(typeof(Microsoft.Azure.Search.Serialization.ExtensibleEnumConverter<Microsoft.Azure.Search.Models.DataType>))>]
type DataType = struct
Public Structure DataType
Implements IEquatable(Of DataType)
继承
DataType
属性
Newtonsoft.Json.JsonConverterAttribute
实现

字段

Boolean

指示字段包含一个布尔值 (true 或 false) 。

Complex

指示字段包含一个或多个复杂对象,这些对象又具有其他类型的子字段。

DateTimeOffset

指示字段包含日期/时间值,包括时区信息。

Double

指示字段包含 IEEE 双精度浮点数。

GeographyPoint

指示字段包含经度和纬度的地理位置。

Int32

指示字段包含 32 位带符号整数。

Int64

指示字段包含 64 位带符号整数。

String

指示字段包含字符串。

方法

Collection(DataType)

为给定类型的集合创建 DataType。

Equals(DataType)

比较 DataType 与另一个 DataType 的相等性。

Equals(Object)

确定指定对象是否等于当前对象。

GetHashCode()

作为默认哈希函数。

ToString()

返回 DataType 的字符串表示形式。

运算符

Equality(DataType, DataType)

比较两个 DataType 值是否相等。

Explicit(DataType to String)

定义从 DataType 到字符串的显式转换。

Implicit(String to DataType)

定义从字符串到 DataType 的隐式转换。

Inequality(DataType, DataType)

比较两个 DataType 值的不相等性。

扩展方法

IsComplex(DataType)

指示给定的数据类型是否为复杂类型。

适用于