Partager via


SnowflakeImportCopyCommand.AdditionalFormatOptions Propriété

Définition

Options de format supplémentaires directement passées à snowflake Copy Command. Type : paires clé-valeur (la valeur doit être de type chaîne) (ou Expression avec l’objet resultType). Exemple : « additionalFormatOptions »: { « FORCE »: « TRUE », « LOAD_UNCERTAIN_FILES »: « 'FALSE' » }

Pour affecter un objet à la valeur de cette propriété, utilisez FromObjectAsJson<T>(T, JsonSerializerOptions).

Pour affecter une chaîne json déjà mise en forme à cette propriété, utilisez FromString(String).

Exemples :

  • BinaryData.FromObjectAsJson(« foo »)Crée une charge utile de « foo ».
  • BinaryData.FromString(« \"foo\" »)Crée une charge utile de « foo ».
  • BinaryData.FromObjectAsJson(new { key = « value » })Crée une charge utile de { « key »: « value » }.
  • BinaryData.FromString(« {\"key\ »: \"value\"} »)Crée une charge utile de { « key »: « value » }.

public System.Collections.Generic.IDictionary<string,BinaryData> AdditionalFormatOptions { get; }
member this.AdditionalFormatOptions : System.Collections.Generic.IDictionary<string, BinaryData>
Public ReadOnly Property AdditionalFormatOptions As IDictionary(Of String, BinaryData)

Valeur de propriété

S’applique à