I am new here so hello.
I am using ASP.NET 4 and I am using LINQ to SQL for my data controls. As advised I create a DBML (LINQ to SQL Class Item) and then drag on the relevant tables from SQL Server. I then use this DBML in my code with LINQ ie:
using (ProjectDataContext Data = new ProjectDataContext())
{
Order MyOrder = new Order();
}
and this all works fine. I have now come across SQLMetal. I cannot see the relevance of this tool, am I missing something?
Thanks,
Ed