|
static IFunctionConfiguration | Named (this IFunctionConfiguration configuration, string name) |
|
static IFunctionConfiguration | WithAlias (this IFunctionConfiguration configuration, string alias) |
|
static IFunctionConfiguration | OfAggregateType (this IFunctionConfiguration configuration) |
|
static IFunctionConfiguration | WithParameter (this IFunctionConfiguration configuration, string name, SqlType type) |
|
static IFunctionConfiguration | WithNumericParameter (this IFunctionConfiguration configuration, string name) |
|
static IFunctionConfiguration | WithStringParameter (this IFunctionConfiguration configuration, string name) |
|
static IFunctionConfiguration | WithDynamicParameter (this IFunctionConfiguration configuration, string name) |
|
static IFunctionConfiguration | WithBooleanParameter (this IFunctionConfiguration configuration, string name) |
|
static IFunctionConfiguration | WithDateTimeParameter (this IFunctionConfiguration configuration, string name) |
|
static IFunctionConfiguration | WithUnoundedParameter (this IFunctionConfiguration configuration, string name, SqlType type) |
|
static IFunctionConfiguration | ReturnsType (this IFunctionConfiguration configuration, SqlType type) |
|
static IFunctionConfiguration | ReturnsString (this IFunctionConfiguration configuration) |
|
static IFunctionConfiguration | ReturnsNumeric (this IFunctionConfiguration configuration) |
|
static IFunctionConfiguration | ReturnsBoolean (this IFunctionConfiguration configuration) |
|
static IFunctionConfiguration | ReturnsBinary (this IFunctionConfiguration configuration) |
|
static IFunctionConfiguration | ReturnsDateTime (this IFunctionConfiguration configuration) |
|
Definition at line 24 of file FunctionConfigurationExtensions.cs.
25 var routineConfig = configuration as IRoutineConfiguration;
26 if (routineConfig == null)
27 throw new InvalidOperationException();
29 return configuration.Named(
new ObjectName(
new ObjectName(routineConfig.Context.SchemaName), name));
Definition at line 91 of file FunctionConfigurationExtensions.cs.
Provides some helper functions for resolving and creating SqlType instances that are primitive to the...
static BinaryType Binary(int maxSize)
Definition at line 87 of file FunctionConfigurationExtensions.cs.
Provides some helper functions for resolving and creating SqlType instances that are primitive to the...
static BooleanType Boolean()
Definition at line 95 of file FunctionConfigurationExtensions.cs.
Provides some helper functions for resolving and creating SqlType instances that are primitive to the...
static DateType DateTime()
Definition at line 83 of file FunctionConfigurationExtensions.cs.
Provides some helper functions for resolving and creating SqlType instances that are primitive to the...
static NumericType Numeric()
Definition at line 79 of file FunctionConfigurationExtensions.cs.
Provides some helper functions for resolving and creating SqlType instances that are primitive to the...
static StringType String()
Definition at line 32 of file FunctionConfigurationExtensions.cs.
33 var routineConfig = configuration as IRoutineConfiguration;
34 if (routineConfig == null)
35 throw new InvalidOperationException();
37 return configuration.WithAlias(
new ObjectName(
new ObjectName(routineConfig.Context.SchemaName), alias));
Definition at line 62 of file FunctionConfigurationExtensions.cs.
Provides some helper functions for resolving and creating SqlType instances that are primitive to the...
static BooleanType Boolean()
Definition at line 66 of file FunctionConfigurationExtensions.cs.
Provides some helper functions for resolving and creating SqlType instances that are primitive to the...
static DateType DateTime()
Definition at line 58 of file FunctionConfigurationExtensions.cs.
static readonly SqlType DynamicType
A special SqlType that is used to mark an argument of a function as dynamic.
A system routine that returns a value at the end of its execution.
Definition at line 50 of file FunctionConfigurationExtensions.cs.
Provides some helper functions for resolving and creating SqlType instances that are primitive to the...
static NumericType Numeric()
Definition at line 54 of file FunctionConfigurationExtensions.cs.
Provides some helper functions for resolving and creating SqlType instances that are primitive to the...
static StringType String()
The documentation for this class was generated from the following file: