Warren Buckley
09/18/2023, 10:28 AMDatabase.Execute("RAW SQL string")
or should the expression approach be used instead or...?!
csharp
Insert.IntoTable(Data.Constants.TableName.MyTable)
.EnableIdentityInsert()
.Row(new
{
someId = 1001,
type = "WARREN",
isDisabled = false
})
.Do();
Warren Buckley
09/18/2023, 10:29 AMWarren Buckley
09/18/2023, 10:30 AMDatabase.Insert()
with the POCORonald Barendse
09/18/2023, 11:01 AMWarren Buckley
09/18/2023, 11:10 AM