I'm using AcriveRecord in SubSonic 3.0.0.3 with MySql.
Is there some easy way to perform something like "SELECT CustomerAddress
FROM customers
" rather than .All() which performs "SELECT * FROM customers
"? And how to get distinct values?
views:
190answers:
1
+3
A:
var qry= from c in Customer.All()
select new {
c.CustomerAddress
}
Rob Conery
2009-09-10 03:00:33
Thank you for help, Rob.And thank you for SubSonic project ;)
Nickname
2009-09-10 14:56:38