I have a table with a datetime field. I want to retrieve a result set grouped by the month/year combination and the number of records that appear within that month/year. H
This Site has an example that should fill your need.
This is the basic syntax:
from o in yg group o by o.OrderDate.Month into mg select new { Month = mg.Key, Orders = mg }