-
Notifications
You must be signed in to change notification settings - Fork 50
Closed
Description
Keep getting System.FormatException when I specify the table schema either using conventions or TableAttribute. Tracked the culprit to EscapeTableName:
public string EscapeTableName(TableName table)
{
var schema = "";
if (!table.Schema.IsNullOrEmpty())
{
schema = Escape(schema,EscapeChars.Start,EscapeChars.End)+".";
}
return schema + Escape(table.Name,EscapeChars.Start, EscapeChars.End);
}
After we check that table.Schema is not null or empty, we try and escape the empty schema variable which causes us to throw
Metadata
Metadata
Assignees
Labels
No labels