AaABen
Name: AaABen
Score: 2,070.54
Last Seen: 950 days, 10 hours, 11 minutes ago
Member Since: 29 October, 2009
DotNetShoutout
atom rss
22
Shouts

Innovation Showcase : Azure Data as a Service – Jim O’Neil details “Dallas"

published 1270 days, 12 hours, 59 minutes ago posted by bobfamiliarbobfamiliar 1271 days, 10 hours, 32 minutes ago
Wednesday, December 02, 2009 11:48:50 AM GMT Tuesday, December 01, 2009 2:16:02 PM GMT
Azure Data as a Service – Jim O’Neil details “Dallas" Jim O’Neil has written a great blog that introduces you to the Data as a Service codenamed “Dallas”. “Dallas” is essentially a repository of data repositories, a service - built completely on Windows Azure - that allows consumers (developers and information workers) to discover, access, and purchase data, images, and real-time services. Developers can access “Dallas” via REST-based APIs and Atom feeds or in raw format (as many of... (more)
category: Architecture | clicked: 0 | 1 comment | | source: blogs.msdn.com
tags: Windows Azure, Data as a Service, Dallas
11
Shouts

Including related entities in your domain service calls

published 1271 days, 5 hours, 47 minutes ago posted by http://micahlmartin.myopenid.com/http://micahlmartin.myopenid.com/ 1273 days, 4 hours, 56 minutes ago
Tuesday, December 01, 2009 7:00:29 PM GMT Sunday, November 29, 2009 7:52:02 PM GMT
There are two steps you need to perform in order to get back related entities in your object graph when making calls to your domain service using the Entity Framework or Linq to Sql as your DAL. Let's say we want to retrieve a Person record along with their Address record. The first step is to tell your DAL to return the associated object in your query like this: Entity Frameworkpublic Person GetPersonById(long Id) { returnthis.Context.People.Include("Address").Where(p => p.Id == Id).FirstOrDefau... (more)
category: Metro | clicked: 0 | comment | | source: www.codingcontext.com
tags: RIA Services, Linq To SQL, Entity Framework
9
Shouts

Meta-Me : Tip 46 – How to exclude a property using Code-Only

published 1271 days, 5 hours, 47 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1272 days, 17 hours, 52 minutes ago
Tuesday, December 01, 2009 7:00:29 PM GMT Monday, November 30, 2009 6:56:02 AM GMT
Tip 46 – How to exclude a property using Code-Only This time a real simple one prompted by this question on StackOverflow.Problem: If you tell the Entity Framework about this class using Code-Only, by default every property becomes part of Entity, and as a result stored in the database (more)
category: Architecture | clicked: 2 | comment | | source: blogs.msdn.com
tags: codeonly, entityframework4, EF4
11
Shouts

Meta-Me : Tip 45 – How to swap EF metadata at runtime.

published 1271 days, 5 hours, 47 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1273 days, 6 hours, 45 minutes ago
Tuesday, December 01, 2009 7:00:29 PM GMT Sunday, November 29, 2009 6:02:53 PM GMT
Tip 45 – How to swap EF metadata at runtime. Background By default the Entity Framework embeds its metadata inside your assembly as a resource, and put a connection string in the App or Web Config references those resourses something like this (more)
category: Data | clicked: 1 | 1 comment | | source: blogs.msdn.com
tags: Metadata, EF 3.5, Entity Framework, EF4, EF 4.0, entityframework, Tips
9
Shouts

HighOnCoding: Get high on ASP.NET articles, videos, podcasts and more!

published 1271 days, 5 hours, 47 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1273 days, 5 hours, 30 minutes ago
Tuesday, December 01, 2009 7:00:29 PM GMT Sunday, November 29, 2009 7:17:51 PM GMT
In this article we discussed several different ways to perform validation in an ASP.NET MVC application. Depending on the scenario you can choose the technique that fulfill your needs. In the next article we will discuss in detail how to create custom DataAnnotations. (more)
category: Web Dev | clicked: 0 | comment | | source: highoncoding.com
tags: Validation, ASPNETMVC
11
Shouts

Tuple in C# 4.0 « Sankarsan’s Journal

published 1271 days, 5 hours, 47 minutes ago posted by http://sankarsan.myopenid.com/http://sankarsan.myopenid.com/ 1273 days, 5 hours, 55 minutes ago
Tuesday, December 01, 2009 7:00:29 PM GMT Sunday, November 29, 2009 6:52:27 PM GMT
Tuple provides us with a way to group elements of disparate data types together.This is present in functional languages like Haskell and also dynamic languages like Python.A common example of a tuple is a pair of coordinates defining a point in two dimensional space.In Haskell a tuple storing name and age of person is defined as : (more)
category: How To | clicked: 0 | 1 comment | | source: sankarsan.wordpress.com
16
Shouts

Innovation Showcase : Securing REST-Based Services with Access Control Service

published 1271 days, 5 hours, 47 minutes ago posted by bobfamiliarbobfamiliar 1273 days, 1 hour, 5 minutes ago
Tuesday, December 01, 2009 7:00:29 PM GMT Sunday, November 29, 2009 11:42:21 PM GMT
Securing REST-Based Services with Access Control Service December 22, 2009 at 11:00am – 12:30pm PSTSecuring REST-Based Services with Access Control Service Presenter: Michele Leroux Bustamante Abstract:The Access Control Service (ACS), part of Windows Azure platform AppFabric, makes it easy to secure REST-based services using a simple set of standard protocols. In addition to enabling secure calls to REST-based services from any client, the ACS uniquely makes it possible to secure ca... (more)
category: Podcast | clicked: 3 | 1 comment | | source: blogs.msdn.com
tags: Security, Windows Azure, Windows Communication Foundation, RESTful Services, Azure Access Control Service, ACS, WCF, AppFabric, REST
12
Shouts

Microsoft AJAX CDN – Now with SSL Support - ScottGu's Blog

published 1270 days, 12 hours, 59 minutes ago posted by mithumithu 1272 days, 8 hours, 55 minutes ago
Wednesday, December 02, 2009 11:48:50 AM GMT Monday, November 30, 2009 3:52:22 PM GMT
Back in September I blogged about the new Microsoft AJAX CDN (Content Delivery Network) service that the ASP.NET team is now providing. The CDN provides edge caching support for AJAX libraries (including jQuery and ASP.NET AJAX). The service is available for free, does not require any registration, and can be used for both commercial and non-commercial purposes. It offers a great way to speed up your external facing web-sites. (more)
category: How To | clicked: 0 | comment | | source: weblogs.asp.net
tags: ASP.NET AJAX, ssl, Ajax CDN, ASP .NET, Ajax, ScottGu, Web-Sites
16
Shouts

131 jQuery Snippets for Visual Studio 2010

published 1270 days, 12 hours, 59 minutes ago posted by http://john-sheehan.com/http://john-sheehan.com/ 1272 days, 6 hours, 16 minutes ago
Wednesday, December 02, 2009 11:48:50 AM GMT Monday, November 30, 2009 6:31:54 PM GMT
A new OSS project to create code snippets for Visual Studio 2010 for use with jQuery. There are 131 so far. (more)
category: Web Dev | clicked: 1 | 1 comment | | source: john-sheehan.com
tags: Visual Studio 2010, jQuery, code snippet
9
Shouts

Al Gonzalez - Macro to Toggle MvcBuildViews Property

published 1271 days, 5 hours, 47 minutes ago posted by AlGonzalezAlGonzalez 1272 days, 2 hours, 18 minutes ago
Tuesday, December 01, 2009 7:00:29 PM GMT Monday, November 30, 2009 10:29:16 PM GMT
I really like the MvcBuildViews property included in ASP.NET MVC projects. When set to true, the views are compiled and any errors are noted ... In order to avoid the longer compile time, I leave the property set to its default of false and only change it periodically to test the views ... Rather than constantly performing theses steps manually, I’ve written a Visual Studio macro to toggle the MvcBuildViews value. (more)
category: Web Dev | clicked: 7 | comment | | source: algonzalez.tumblr.com
tags: ASP.NET MVC, .NET, Macro, VisualStudio
14
Shouts

Innovation Showcase : Revision of Windows 7 Developer Guide

published 1271 days, 5 hours, 47 minutes ago posted by zhimingzhiming 1272 days, 7 hours, 36 minutes ago
Tuesday, December 01, 2009 7:00:29 PM GMT Monday, November 30, 2009 5:11:52 PM GMT
30 November 2009Revision of Windows 7 Developer Guide The Windows 7 platform makes it easy for developers to create engaging, user-friendly applications by providing familiar tools and rich development features that allow them to take advantage of the latest PC capabilities. The 46-page white paper summarizes key development features of Windows 7 and links to technical details of each feature at the MSDN site. You can download the latest revision of the Windows 7 Developer Guide here.Filed under: Windows 7 (more)
category: Architecture | clicked: 0 | 1 comment | | source: blogs.msdn.com
18
Shouts

Silverlight 4 – Review of all the Cool New Features

published 1270 days, 12 hours, 59 minutes ago posted by jbarnesjbarnes 1272 days, 10 hours, 14 minutes ago
Wednesday, December 02, 2009 11:48:50 AM GMT Monday, November 30, 2009 2:33:09 PM GMT
Check-out this comprehensive blog post by Tim Heuer – who outlines all the cool new SL4 features announced at the PDC in November - with links to videos and code samples to help you get started with each new capability. Here is a link to his complete blog post: http://timheuer.com/blog/archive/2009/11/18/whats-new-in-silverlight-4-complete-guide-new-features.aspx (more)
category: Metro | clicked: 1 | 1 comment | | source: blogs.msdn.com
tags: Silverlight 4 Beta
17
Shouts

Innovation Showcase : A Lap Around Microsoft Visual Studio and Team Foundation Server 2010

published 1270 days, 12 hours, 59 minutes ago posted by jbarnesjbarnes 1272 days, 9 hours, 22 minutes ago
Wednesday, December 02, 2009 11:48:50 AM GMT Monday, November 30, 2009 3:25:58 PM GMT
30 November 2009 A Lap Around Microsoft Visual Studio and Team Foundation Server 2010 Wondering what’s coming in the next version of Visual Studio? Come learn how Visual Studio 2010 advances developer productivity with new tools for application debugging, and designers for key technologies such as Sharepoint. See how the new modeling tools allow you to explore application structure while validating that implemented code conforms with architectural design. Finally, experience how the ALM tools in Te... (more)
category: How To | clicked: 0 | comment | | source: blogs.msdn.com
15
Shouts

BuzzTap – Tapping into Fresh Sports News with IE8

published 1271 days, 5 hours, 47 minutes ago posted by jbarnesjbarnes 1272 days, 9 hours, 52 minutes ago
Tuesday, December 01, 2009 7:00:29 PM GMT Monday, November 30, 2009 2:55:37 PM GMT
BuzzTap (www.buzztap.com), has built a aggregated sporting news engine, and allows people to consume via a traditional web site and Twitter feeds. This staff looked at how Internet Explorer 8 could enhance their efforts, immediately jumped into action, and created a unique set of IE8 add-on’s. The results are web slices for every major sports franchise and major colleges and a unique spin on visual search. Buzztap.com is not a household name yet, but they certainly utilized Internet Explorer in a big ... (more)
category: Web Dev | clicked: 0 | 1 comment | | source: blogs.msdn.com
10
Shouts

Daily tech links for .net and related technologies - December 1-2, 2009 - Sanjeev Agarwal

published 1270 days, 12 hours, 59 minutes ago posted by sanjeevanasanjeevana 1271 days, 14 hours, 12 minutes ago
Wednesday, December 02, 2009 11:48:50 AM GMT Tuesday, December 01, 2009 10:35:58 AM GMT
ASP.NET MVC Validation Using DataAnnotations, 131 jQuery Snippets for Visual Studio 2010, How to host ASP.NET application at Amazon EC2, Build a Front End of an E-commerce System Using ASP.NET MVC Framework Part 1, Microsoft AJAX CDN – Now with SSL Support, T4MVC 2.6: MVC 2 Areas support 11 Useful Online Tools for Better CSS Development, Five Amazing Graphic Design Portfolios, Facebook Style Footer Admin Panel Part 1, 23 Pure CSS Effects/Solutions to Make JavaScript Angry!, 10 Expert Tips for D... (more)
category: Web Dev | clicked: 0 | comment | | source: weblogs.asp.net
tags: Silverlight, SQL, Web Service, ASP .NET, UX, Smart Client, Architecture, Ajax
13
Shouts

Writing WPF/Silverlight compatible code. Part 5: Adding PropertyChangedCallback

published 1270 days, 12 hours, 59 minutes ago posted by http://ailon.livejournal.com/http://ailon.livejournal.com/ 1272 days, 10 hours, 29 minutes ago
Wednesday, December 02, 2009 11:48:50 AM GMT Monday, November 30, 2009 2:18:51 PM GMT
This part presents a workaround you can use in Silverlight to set a handler to be called when value of inherited dependency properties changes. (more)
category: Metro | clicked: 1 | comment | | source: devblog.ailon.org
tags: Silverlight, WPF
10
Shouts

ASP.NET MVC Validation Using DataAnnotations

published 1270 days, 12 hours, 59 minutes ago posted by http://azamsharp.myopenid.com/http://azamsharp.myopenid.com/ 1272 days, 9 hours, 37 minutes ago
Wednesday, December 02, 2009 11:48:50 AM GMT Monday, November 30, 2009 3:10:35 PM GMT
Formally known as GridViewGuy Videos | Podcasts ASP.NET MVC Validation Using DataAnnotations AzamSharp Published Date: 11/30/2009 7:13:10 AM Views: 7 Abstract: In this screencast Mohammad Azam will demonstrate how to perform validation in an ASP.NET MVC application using DataAnnotations. Did you like this article? Submit Similar Articles Implementing Validation in ASP.NET MVC Application Using IDataErrorInfo... (more)
category: Web Dev | clicked: 0 | 1 comment | | source: www.highoncoding.com
tags: ASP.NET MVC 1.0
12
Shouts

101 on Prototype CSS Selector Performance

published 1270 days, 12 hours, 59 minutes ago posted by grabnerandigrabnerandi 1272 days, 9 hours, 6 minutes ago
Wednesday, December 02, 2009 11:48:50 AM GMT Monday, November 30, 2009 3:41:12 PM GMT
Performance implications of certain CSS Selectors are not specific to a certain JavaScript Library like Prototype. I recently blogged about the internals of CSS Selectors in jQuery. The same holds true for every JavaScript library that offers CSS Selectors. Certain lookups can be done by using the native browser functions like getElementById or getElementsByTagName. Lookups by class name are not natively supported in IE and are therefore implemented in JavaScript by iterating through all elements in the ... (more)
category: Web Dev | clicked: 1 | 1 comment | | source: blog.dynatrace.com
tags: Prototype, Performance, JavaScript, Frameworks
9
Shouts

Parallel For Loop - Coding N Design

published 1273 days, 5 hours, 3 minutes ago posted by http://sankarsan.myopenid.com/http://sankarsan.myopenid.com/ 1274 days, 11 hours, 31 minutes ago
Sunday, November 29, 2009 7:45:00 PM GMT Saturday, November 28, 2009 1:16:06 PM GMT
In my earlier post on Parallel Programming I have explained about Task and Data Parallelism.In this post we will go into a little more deep into the API and discuss about Parallel For loop in .NET Framework 4.0.The static method For of class System.Threading.Tasks.Parallel class allows us to execute for loops where several iterations might run in parallel.There are couple of ov... (more)
category: How To | clicked: 3 | 1 comment | | source: codingndesign.com
9
Shouts

Casts using “as” (Pitfalls and Best Practices to Prevent Them #5)

published 1273 days, 5 hours, 3 minutes ago posted by winSharp93winSharp93 1275 days, 8 hours, 32 minutes ago
Sunday, November 29, 2009 7:45:00 PM GMT Friday, November 27, 2009 4:15:56 PM GMT
Well – “as” is faster to type than a “real” cast using two brackets and has the same result. Really? (more)
category: How To | clicked: 1 | comment | | source: winsharp93.wordpress.com
tags: Pitfalls, C#, casting, As, Debugging, Codingstyle