Skip to main content

SqlBuilder.Template

Assembly: ServiceStack.OrmLite.dll
View Source
Declaration
public class Template : object, ISqlExpression

Properties

RawSql

View Source
Declaration
public string RawSql { get; }

Parameters

View Source
Declaration
public object Parameters { get; }

Params

View Source
Declaration
public List<IDbDataParameter> Params { get; }

Methods

ToSelectStatement()

View Source
Declaration
public string ToSelectStatement()
Returns

System.String

ToSelectStatement(QueryType)

View Source
Declaration
public string ToSelectStatement(QueryType forType)
Returns

System.String

Parameters
TypeName
ServiceStack.OrmLite.QueryTypeforType

SelectInto<T>()

View Source
Declaration
public string SelectInto<T>()
Returns

System.String

Type Parameters
  • T

SelectInto<T>(QueryType)

View Source
Declaration
public string SelectInto<T>(QueryType queryType)
Returns

System.String

Parameters
TypeName
ServiceStack.OrmLite.QueryTypequeryType
Type Parameters
  • T

Implements