Hi,
I have a sql statement I'd like to convert to Linq to Sql. Here's the
sql:
select sum( SubTotal), DocumentCategor y
from vDocumentCatego ry
where DocumentType = 'I'
and CreatedDate between '1/1/2006' and '12/1/2006'
and DocumentStatusI d = 1
group by DocumentCategor y
Thanks
Andy
I have a sql statement I'd like to convert to Linq to Sql. Here's the
sql:
select sum( SubTotal), DocumentCategor y
from vDocumentCatego ry
where DocumentType = 'I'
and CreatedDate between '1/1/2006' and '12/1/2006'
and DocumentStatusI d = 1
group by DocumentCategor y
Thanks
Andy
Comment