using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TEST
{
class Program
{
static void Main(string[] args)
{
ApartmentDataContext myContext = new ApartmentDataContext();
var myQuery = from c in myContext.apartments
select c;
foreach (var item in myQuery)
{
Console.WriteLine(item.AptName);
foreach (var subitem in item.reviews)
{
Console.WriteLine("{0} {1} {2}",item.AptName,subitem.Rate,subitem.Comments);
}
}
Console.ReadLine();
}
}
}