Click or drag to resize
SqlServerDialect Class
Provides functionality to generate SQL with SQL Server dialect.
Inheritance Hierarchy
SystemObject
  LiteRepositorySqlDialect
    LiteRepository.SqlServerSqlServerDialect

Namespace: LiteRepository.SqlServer
Assembly: LiteRepository (in LiteRepository.dll) Version: 2.0.4
Syntax
C#
public class SqlServerDialect : SqlDialect

The SqlServerDialect type exposes the following members.

Constructors
  NameDescription
Public methodSqlServerDialect
Initializes a new instance of the SqlServerDialect class
Top
Methods
  NameDescription
Public methodDelete
Creates a delete SQL.
(Overrides SqlDialectDelete(String, String).)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodHasParameters
Checks the string whether it has parameters.
(Overrides SqlDialectHasParameters(String).)
Public methodInsert
Creates a insert SQL.
(Overrides SqlDialectInsert(String, String, String, Boolean).)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodParameter
Returns a parameter with a symbol that represents parameter in DbParameter.
(Overrides SqlDialectParameter(String).)
Public methodSelect
Creates a select SQL.
(Overrides SqlDialectSelect(String, String, String, String, NullableInt32).)
Public methodSelectScalar
Creates a scalar select SQL.
(Overrides SqlDialectSelectScalar(String, String, String).)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodUpdate
Creates a update SQL.
(Overrides SqlDialectUpdate(String, String, String).)
Top
See Also