My application has BizTalk orchestration which needs to do basic insert into a table. Which is the better way of doing it
I want to know the best way of inserting the data into a database in the BizTalk orchestration.
You should always prefer using the SQL Adapter.
The biggest downside is performance - it will create another persistence point in your orchestration on the send shape, whereas an inline SQL call would avoid that.