Click or drag to resize

FieldInterfaceExtensionsIsMissingRequiredValue Method

Gets whether or not a required field has a missing value (thus failing requiredness validation) allowing for the IField object being null. True if field is non-null, field's Required attribute is set and it's value is missing (generally this means null or an empty string).

Namespace:  NetQuarry.Data
Assembly:  EAP.Mapper (in EAP.Mapper.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public static bool IsMissingRequiredValue(
	this IField fld
)

Parameters

fld
Type: NetQuarry.DataIField
The IField object, possibly null.

Return Value

Type: Boolean
True if the field is not null, required, and missing a value.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IField. 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).
See Also