I also want to note that LINQ is not going to be supported for long.
(LINQ2SQL atleast) Here's why.

I attended a LiveMeeting last night, Although I couldnt post the link fast
enough to get your attention. It was about the ADO.NET Entity Framework. The
EF is cool, because it has alot of features we called for in LINQ. It can
also be used with any type of DB (Oracle, MySQL, etc.)

You can use LINQ to query EF. Which means instead of using a SQL command,
you can access data like this:

EntityFramework ef = new EntityFramework();
var stuff = from s in ef.Customers
               select s;

DataGrid.DataSource = stuff;

Alot easier, yea?

And about WCF, the reason it is cool is because it creates Web Services as,
esentially, a whole other application.

WPF separates the presentation layer of your app from the logic.

Reply via email to