Hi I\'ve got some SQL ... SELECT AdviceNo, Registration FROM tblSalesDetail that produces something like ...
I currently have the following code to generate a sales report over the last 30 days. I\'d like to know if it would be possible to use linq to generate this report in one step instead of the rather ba
I have a tricky XSLT transformation and I\'d like your advise My xml is formatted as below: <Person>
I have noticed a strange Sql Translation in a LinqToSql Query I was trying to optimise. If I execute the following
Normally HTML check boxes are grouped based on name. Is it possible to group check box other开发者_开发技巧 than name?
I like to perform the following with SubSonic 3 without 开发者_开发技巧using Linq (using dynamic lookup of columns and tables). Also, no inline sql (to prevent sql-injections).
I\'m looking for an algorithm in c# that solves a combinatorics problem: Assume i have the objects 1,2,3,4
I have the following query: var groupCats = from g in groups group g by g.Value into grouped select new { GroupCategory = grouped.Key,
This is a question about Reports in Access 2007. I\'m unsure whether the solution will involve any programming, but hopefully someone will be able to help me.
Hi can someone help开发者_高级运维 me convert this tsql statement into c# linq2sql? select [series] from table group by [series] order by max([date]) desc