Interface IQueryFunctionBuilder
Builds USER DEFINED FUNCTIONS
in SQL.
Inherited Members
Namespace: LemonEdge.DataAccess.Core.Abstractions.Builders
Assembly: LemonEdge.DataAccess.Core.Abstractions.dll
Syntax
public interface IQueryFunctionBuilder : IQueryProgram, IQueryBuilder
Properties
IsInLine
Whether the function is inline or not.
Declaration
bool IsInLine { get; set; }
Property Value
Type | Description |
---|---|
bool |
WithSchemaBinding
Whether the function includes WITH SCHEMA BINDING
Declaration
bool WithSchemaBinding { get; set; }
Property Value
Type | Description |
---|---|
bool |
Methods
Returns(string)
Specifies the return command text.
Declaration
void Returns(string returnCommandText)
Parameters
Type | Name | Description |
---|---|---|
string | returnCommandText | The SQL. |