The methods of the Case class are listed below. For a complete list of Case class members, see the Case Members topic.
![]() | Accepts the specified visitor. |
![]() | Overloaded. Add a condition that will be evaluated in the case statement. |
![]() | Overloaded. Returns a new DateTime based upon adding the specified interval to this date. |
![]() | Overloaded. Add a field value to return if all conditions evaluate to false. |
![]() | Appends the SQL. |
![]() | Overloaded. Sets the alias to be used as the expression name. |
![]() | Overloaded. Returns the average of all values in a group including duplicate values. Translates to a AVG(field) SQL function. |
![]() | Overloaded. Returns the total number of rows from a table, including duplicates, where this field evaluates to a non-null value. Translates to a COUNT(field) SQL function. |
![]() | Returns a string representing a datepart of a date. |
![]() | Overloaded. |
![]() | Overloaded. |
![]() | |
![]() | Gets the child object model expressions that are directly contained by this expression. |
![]() | Get a string representation of the hashcode that uniquely identifies this field instance. This field becomes cached in one of two caches when GetKey is called: 1. If the current thread is executing within an HTTP context, i.e., a web application, then the field is stored in the current HttpSessionState. 2. If the current thread is not executing within an HTTP context, then the field is stored in DomainObject's AppDomain cache. This field can then be retrieved later via a call to GetField. You might want to use the field key as the value of a drop down list in a web page and then retrieve the actual field from the cache when the page is posted back to the server. |
![]() | Get a string that identifies this field to a person familiar with the object model. Used when an instance of this field is part of a logging or assertion statement. |
![]() | The object that contains this field. For example, the class that contains this member field. |
![]() | Gets the Type of the current instance. |
![]() | Returns the lower case string of this field's values. Translates to a LOWER(field) SQL function. |
![]() | Returns the maximum value of the field. Null values are ignored. Translates to a MAX(field) SQL function. |
![]() | Returns the minimum value of the field. Null values are ignored. Translates to a MIN(field) SQL function. |
![]() | Replaces all occurrences of substringToFind in the string value of this field with replacementString. Translates to a REPLACE(fieldToSearch, substringToFind, replacementString) SQL function. |
![]() | Replaces a NULL value for this field with the specified replacement value. |
![]() | Overloaded. Returns the sum of this field's values. Null values are ignored. Translates to a SUM(field) SQL function. |
![]() | Returns the upper case string of this field's values. Translates to a UPPER(field) SQL function. |
Case Class | DomainObjects.Facade.Command.Function Namespace