Closed oghenez closed 4 years ago
This insert
var sqlBuilder = new SqlBuilder() .Insert("dbo.Test") .Columns("Name", "Salary") .Values("'John'", "50").Values("'Jane'", "100");
failed with the following error
BC30456 'Columns' is not a member of 'SqlBuilder'.
Use ".Into" instead of ".Columns"
@tokmendoza Thank you!
This insert
failed with the following error