ISqlGenerationHelper.GenerateLiteral 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
GenerateLiteral(Object, RelationalTypeMapping) |
生成文本值的 SQL 表示形式。 |
GenerateLiteral(StringBuilder, Object, RelationalTypeMapping) |
写入文本值的 SQL 表示形式。 |
GenerateLiteral(Object, RelationalTypeMapping)
生成文本值的 SQL 表示形式。
public string GenerateLiteral (object value, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping typeMapping = default);
abstract member GenerateLiteral : obj * Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping -> string
Public Function GenerateLiteral (value As Object, Optional typeMapping As RelationalTypeMapping = Nothing) As String
参数
- value
- Object
文字值。
- typeMapping
- RelationalTypeMapping
用于此值的可选类型映射。
返回
生成的字符串。
适用于
GenerateLiteral(StringBuilder, Object, RelationalTypeMapping)
写入文本值的 SQL 表示形式。
public void GenerateLiteral (System.Text.StringBuilder builder, object value, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping typeMapping = default);
abstract member GenerateLiteral : System.Text.StringBuilder * obj * Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping -> unit
Public Sub GenerateLiteral (builder As StringBuilder, value As Object, Optional typeMapping As RelationalTypeMapping = Nothing)
参数
- builder
- StringBuilder
要 StringBuilder 向其写入生成的字符串的 。
- value
- Object
文字值。
- typeMapping
- RelationalTypeMapping
用于此值的可选类型映射。