Class Query.Param
Represents a CRUD query parameter
Inheritance
System.Object
Query.Param
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Azos.Data.Access
Assembly: Azos.dll
Syntax
[Serializable]
public sealed class Param : INamed
Constructors
Param(String, Object, Boolean)
Declaration
public Param(string name, object value = null, bool hasValue = true)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | |
System.Object | value | |
System.Boolean | hasValue |
Properties
HasValue
Declaration
public bool HasValue { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Name
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
System.String |
Value
Declaration
public object Value { get; }
Property Value
Type | Description |
---|---|
System.Object |