Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
INSERT/DELETE/UPDATE can be performed in LINQ to SQL through normal T-SQL DML queries,
static void Main(string[] args)
{
NorthwindDBDataContext db = new NorthwindDBDataContext();
var query = db.ExecuteCommand("YOUR DML Query", "Your Parameter");
ObjectDumper.Write(query);
}
Are you feeling comfortable? Hold on, please try to avoid this as you have better object model approach.
Namoskar!!!
Comments
- Anonymous
July 13, 2007
INSERT/DELETE/UPDATE can be performed in LINQ to SQL through normal T-SQL DML queries, static void Main