Click or drag to resize
FunctionMapping Properties

The FunctionMapping type exposes the following members.

Properties
  NameDescription
Public propertyCatalogName
Gets the name of the catalog (optional, can be empty), where the database function can be found in.
Public propertyDbFunctionCallPattern
Gets the DbFunctionCall pattern to use, which is the pattern used in the DbFunctionCall object which will take care of the function call text in the resulting query.
Public propertyFunctionName
Gets the name of the .NET function or operator (in string form, e.g. "+") which equivalent should be called. Example: Concat.
Public propertyKey
Gets the key of this mapping, which is build from function name, typename and parameter count. It has the format as defined in FunctionMappingStore.KeyFormat: FunctionName|TypeName|ParameterCount. Example: Concat|System.String|2
Public propertyParameterCount
Gets the parameter count of the function / operator. This number has to be equal to the # of parameters of the db equivalent.
Public propertySchemaName
Gets the name of the schema (optional, can be empty), where the database function can be found in.
Public propertyTypeName
Gets the name of the type defining the .NET function. Example: System.String.
Top
See Also