Chitharthan
Chitharthan

Reputation: 29

Convert LINQ to SQL query

I have developed a project in Entity Model using LINQ queries, but I should have used stored procedures. Is it possible to convert all the LINQ queries to stored procedures or SQL queries?

Upvotes: 2

Views: 4171

Answers (1)

samsanthosh2008
samsanthosh2008

Reputation: 91

dc.GetCommand(query).CommandText

And also use LinqPad

Upvotes: 1

Related Questions