Class NonUnicodeString
An explicitly non-Unicode string literal ('some string' in T-SQL)
Inherited Members
Namespace: FluentMigrator
Assembly: FluentMigrator.Abstractions.dll
Syntax
public class NonUnicodeString
Constructors
| Edit this page View SourceNonUnicodeString(string)
Used for explicitly creating a non-Unicode string literal in Transact SQL
Declaration
public NonUnicodeString(string value)
Parameters
Type | Name | Description |
---|---|---|
string | value | The value of the non-Unicode string literal |
Properties
| Edit this page View SourceValue
Gets the value of the non-Unicode string literal
Declaration
public string Value { get; }
Property Value
Type | Description |
---|---|
string |
Methods
| Edit this page View SourceToString()
Overrides ToString() to return the value.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | The value of the non-Unicode string literal. |