October 2008 Entries



deathtol2s Is Microsoft going to kill LINQ to SQL (L2S)?  The rumors are that Entity Frameworks (EF) is the database plan of choice now and L2S is out the door.  There have been a few posts on the topics, here are a couple:

http://codebetter.com/blogs/ david.hayden/archive/2008/10/30/linq-to-sql-gets-kicked-to-the-curb-needs-a-good-home.aspx

http://ayende.com/Blog/archive/2008 /10/31/microsoft-kills-linq-to-sql.aspx

Personally, I think if they just added some method of change tracking to the entities and made disconnected work easier, then L2S would be pretty hot.  I do not like passing around connections (DataContext’s) to different layers and prefer to work in a disconnected form.  Of course, this means you either hit the database for the original data and then overwrite it with the modified data or you keep a copy of the original data manually (I have used this later method and there is a post here about it.

Of course, with L2S you must watch your queries very carefully.  If you do not pay attention, you might be generating tens of thousands or even hundreds of thousands of queries to your database from a single query.  SQL Profiler comes in real handy there.

From what I have seen about EF though, it appears it is geared for more substantial applications and could not be thought as lightweight unless you an extreme fantasy.  There needs to be a lightweight but yet truly functional database layer and L2S could be just the ticket with a few modifications.

Guess we will have to wait and see…




openid_wl News has it that Microsoft Live will be came to be used as an OpenID server so that you can use your Live ID to log into any OpenID enabled site.  That is good, BUT…  What about the other way?  Will this deal be just like Yahoo! where you will be able to use them as an OpenID server but not be able to log into them by OpenID?

Come on you big guys quit playing games and allow use to use OpenID to log into Microsoft live, Yahoo! and Google!  Is that so hard?  OpenID NOW!

http://www.techcrunch.com/2008/10/27/windows-live-adds-support-for-openid-calls-it-de-facto-login-standard/




NetFlix It appears Netflix has released a public API to access their information.  I have not had the time to full investigate their developer pack, but here is the link:

http://developer.netflix.com/

There is a post about it here:

http://josephsmarr.com/2008/10/01/using-netflixs-new-api-a-step-by-step-guide/

I do have a few ideas how I might use this in the future.   Now if I can just dig around here and find the time for it :)