Class ExplicitUnicodeString
Insert text with unicode data. Primarily for Sql Server, it prefixes the string with 'N
Inherited Members
Namespace: FluentMigrator
Assembly: FluentMigrator.Abstractions.dll
Syntax
[Obsolete("Use normal CLR strings instead, as they will be formatted to SQL Server Unicode strings")]
public class ExplicitUnicodeString
  Constructors
ExplicitUnicodeString(string)
Insert text with unicode data. Primarily for Sql Server, it prefixes the string with 'N
Declaration
public ExplicitUnicodeString(string text)
  Parameters
| Type | Name | Description | 
|---|---|---|
| string | text | Unicode string  | 
      
Properties
Text
Gets the text of the unicode string literal
Declaration
public string Text { get; set; }
  Property Value
| Type | Description | 
|---|---|
| string | 
Methods
ToString()
Returns a string that represents the current object.
Declaration
public override string ToString()
  Returns
| Type | Description | 
|---|---|
| string | A string that represents the current object.  |