nullable
美
英 
例句
Attribute value with a null reference assigned to a reference type or to a nullable value type.
属性值等同于分配给引用类型或分配给可为空值类型的空引用。
The result of an arithmetic operator is always nullable, even if the operands are nonnullable and ANSI_WARNINGS or ARITHABORT is set ON.
即使操作数不可为空并且ANSI_WARNINGS或ARITHABORT设置为ON,算术运算符的结果也始终可为空。
Operator defines the default value to be returned when a nullable type is assigned to a non-nullable type.
运算符定义当可空类型分配给非可空类型时返回的默认值。
A type parameter can be constrained to be a reference type, a non- nullable value type, and to have a default constructor .
类型参数可以约束为引用类型、不可为空值类型和具有默认构造函数。
Specifically, any type defined as Nullable(Of T) wasn't allowed to be optional.
特别地,定义为Nullable(OfT)的任何类型都不允许是可选的。
Use nullable types to represent things that exist or do not exist depending on the circumstance.
根据具体环境,使用可空类型来表示存在或不存在的事物。
The nullability property of arithmetic operators over floating point data type is always nullable.
对浮点数据类型执行运算的算术运算符的为空性属性始终可为空。
Assign a value to a nullable type just as you would for an ordinary value type, for example int?
为可以为null的类型赋值的方法与为一般值类型赋值的方法相同,如int?
In this case, define the field to be a nullable type instead of a value type.
在这种情况下,将该字段定义为可空类型而不是值类型。
Though most Rails developers do not like to keep constraints in the database, you should consider things like nullable columns.
虽然大多数Rails开发人员都不喜欢在数据库中保留限制,但您应该考虑像空列这样的事情。
The as operator must be used with a reference type or nullable type ('int' is a non-nullable value type).
as运算符必须与引用类型或可为null的类型一起使用(“int”是不可为null的值类型)。
You can declare variables and properties with nullable types, and you can declare an array with elements of a nullable type.
可以用可空类型来声明变量和属性,也可以用可空类型的元素来声明数组。
If there is no default value and the column is not nullable, the server will return an error and an exception will be thrown.
如果没有默认值且列不可为空值,服务器将返回错误,此时将引发异常。
You can also use the classes and methods of the System. Reflection namespace to generate Type objects that represent Nullable types.
还可以使用System.Reflection命名空间的类和方法来生成表示可以为null的类型的Type对象。
In the lower right part of the section, set all key columns of the output link to non-nullable by selecting No in the nullable column.
在本部分的右下侧,通过选择空列上的No可将所有输出链接的关键列都设置为非空。
Indicates whether the current Nullable object is equal to a specified object.
指示当前Nullable对象是否等于指定的对象。
Columns in the view select list can be nullable or not nullable.
视图选择列表中的列可以为空,也可以不为空。
You store a value in a variable or property of a nullable type in the normal way.
按常规方式将值存储在可空类型的变量或属性中。
Calling GetType on a Nullable type causes a boxing operation to be performed when the type is implicitly converted to Object.
如果对可空类型调用GetType,则在该类型被隐式转换为Object时将执行装箱操作。
True - then boxing takes place, but only the underlying type that the nullable object is based upon is boxed.
则会发生装箱过程,但只将可空对象所基于的基础类型装箱。
For this constraint to execute, the foreign key columns must be nullable.
若要执行此约束,外键列必须可为空值。
If the column is NULLABLE, any number of NULLs can be inserted in that column.
如果此列可以包含NULL值,就可以在此列中插入任意数量的NULL值。
Therefore you cannot use is to determine whether a variable is a Nullable type.
因此,不能使用is来确定变量是否为可空类型。
If the return type of the method is nullable, the distinguished null value for the type is returned.
如果该方法的返回类型可以为空,则返回类型的突出默认空值。
Nullable types are a special case of generic types.
可为Null的类型是泛型类型的特例。
The Nullable class provides complementary support for the Nullable structure.
Nullable类为Nullable结构提供补充支持。
True clears all columns except the declared primary key, nullable columns with no default, and unique key columns.
将清除除声明的主键、没有默认值并且可为空的列以及唯一的键列以外的所有列。
Invokes a transform function on each element of a sequence and returns the maximum nullable Int32 value.
调用序列的每个元素上的转换函数并返回可空Int32的最大值。
In this example, no one is allowed to update or insert into that column, which is also marked as unique and not nullable.
在本例中,不允许任何人更新或插入同样标记为唯一和不得为空的列。
There is one major concern regarding this second strategy: in order for it to work, you must set all non-shared columns to NULLABLE.
关于第二个策略,有一个需要重点考虑的地方:为了让它工作,必须把所有非共享列设置为NULLABLE。
The metadata API also provides the ability to define nullable columns, establish primary keys, and set-up relationships between tables.
该元数据API还提供了定义可以为空的列的能力,并设置了表之间的关系。
ANSI_NULL defaults are always on for ALTER COLUMN; if not specified, the column is nullable.
对于ALTERCOLUMN,ANSI_NULL默认值始终为ON;如果没有指定,列可为空。
The value returned for this column is different from the value returned for the NULLABLE column.
该列的返回值与NULLABLE列返回的值不同。
The expression may be a null value if the parameter is nullable.
如果参数可为空值,则表达式可能为空值。
If the target column is not nullable, the insert or update action fails and the user receives an error.
如果目标列不可为空,则插入或更新操作将失败,用户将收到错误消息。
For an example of when you might use a nullable type, consider how an ordinary Boolean variable can have two values: true and false.
有关可能使用可以为null的类型的示例,请考虑普通的布尔变量如何能够具有两个值:true和false。
Nullable types are useful when working with databases and other data structures that may contain elements that contain no specific values.
在使用数据库和其他可能包含未含有具体值的元素的数据结构时,可以使用可空类型。
Previously , the code would allow default behavior to occur when handling nullable fields .
以前,代码允许在处理可为空的域时采用缺省的行为。
If a column is nullable and there is no explicit default value set, NULL becomes the implicit default value of the column.
如果某个列可为空值,并且未设置显式的默认值,则会使用NULL作为该列的隐式默认值。
Correctly generate Update statements for nullable columns.
能够正确地为可为空的列生成Update语句。