Hussey
Name: Hussey
Score: 2,589.28
Last Seen: 1213 days, 5 hours, 53 minutes ago
Member Since: 14 October, 2009
DotNetShoutout
atom rss
9
Shouts

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

published 1272 days, 57 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1273 days, 13 hours, 1 minute 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

Including related entities in your domain service calls

published 1272 days, 57 minutes ago posted by http://micahlmartin.myopenid.com/http://micahlmartin.myopenid.com/ 1274 days, 5 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
22
Shouts

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

published 1271 days, 8 hours, 9 minutes ago posted by bobfamiliarbobfamiliar 1272 days, 5 hours, 41 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
12
Shouts

Atanas Hristov: Design Patterns – Memento Pattern - blog about programming.

published 1270 days, 10 hours, 51 minutes ago posted by http://atanashristov.blogspot.com/http://atanashristov.blogspot.com/ 1272 days, 1 hour, 3 minutes ago
Thursday, December 03, 2009 9:06:40 AM GMT Tuesday, December 01, 2009 6:54:27 PM GMT
The Memento Pattern is useful to remember the state of object without keeping copy of the whole object. Copying of the entire object is sometimes inefficient as the copy eventually contains much more information that we need to restore back. (more)
category: How To | clicked: 0 | 1 comment | | source: atanashristov.blogspot.com
9
Shouts

EF POCOs and GetObjectStateEntry : Don't Be Iffy

published 1271 days, 8 hours, 9 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1272 days, 10 hours, 37 minutes ago
Wednesday, December 02, 2009 11:48:50 AM GMT Tuesday, December 01, 2009 9:20:02 AM GMT
Even when working with POCOs, the EF’s ObjectContext can track the objects using ObjectStateEntry objects just as it does for entities that inherit from EntityObject. I was thinking about ObjectContext.ObjectStateManager.GetObjectStateEntry. This method has two overloads. One takes an entity and the other takes an EntityKey of an entity. Then it returns the ObjectStateEntry being maintained to track that particular entity. In more detail, the signature for the first overload is GetObjectStateEntry(obj... (more)
category: How To | clicked: 1 | 1 comment | | source: thedatafarm.com
tags: persistence ignorance, entityframework4, EF4, POCO
9
Shouts

Windows Azure – Using DataSet with cloud storage

published 1270 days, 10 hours, 51 minutes ago posted by gpeipmangpeipman 1272 days, 6 hours, 19 minutes ago
Thursday, December 03, 2009 9:06:40 AM GMT Tuesday, December 01, 2009 1:38:37 PM GMT
On Windows Azure CTP some file system operations are not allowed. You cannot create and modify files located on server hard disc. I have small application that stores data to DataSet and I needed place where I can hold this file. The logical choice is cloud storage service of course. In this posting I will show you how to read and write DataSet to your cloud storage as XML-file. (more)
category: How To | clicked: 1 | 1 comment | | source: weblogs.asp.net
tags: Windows Azure, cloud storage
10
Shouts

Random Acts of Coding: Managing Composition Through Lazy Loading Parts

published 1271 days, 8 hours, 9 minutes ago posted by JamesEggersJamesEggers 1272 days, 6 hours, 13 minutes ago
Wednesday, December 02, 2009 11:48:50 AM GMT Tuesday, December 01, 2009 1:44:20 PM GMT
So far in this post series, we've been looking at various aspects of working with MEF in the context of a single level of composition.  One interesting thing about MEF is that its composition is recursive based on the assemblies and types identified in the catalogs within the container.  What this means is that if one of our parts also has imports defined for parts of its own, the composition container will continue loading parts for the initial type as well as all parts loaded until no more parts are fo... (more)
category: Architecture | clicked: 1 | 1 comment | | source: randomactsofcoding.blogspot.com
tags: C#, MEF
10
Shouts

IEnumerable.ToDictionary()

published 1271 days, 8 hours, 9 minutes ago posted by KodefuGuruKodefuGuru 1272 days, 15 hours, 16 minutes ago
Wednesday, December 02, 2009 11:48:50 AM GMT Tuesday, December 01, 2009 4:41:12 AM GMT
When retrieving data from web services, it’s sometimes obvious it was meant to be represented as a dictionary. In my coworkers case earlier today, he was getting back a simple class from a web service written in Java (don’t blame me for the exposed fields).public class KeyValuePairType { public string Key; public string Value; } He wanted to access the values as nature (err, C#) intended it:Dictionary (more)
category: How To | clicked: 0 | comment | | source: www.kodefuguru.com
tags: IEnumerable, Linq
10
Shouts

Windows Ribbon for WinForms, Part 19 – RecentItems - Arik Poznanski's Blog

published 1270 days, 10 hours, 51 minutes ago posted by arikarik 1273 days, 55 minutes ago
Thursday, December 03, 2009 9:06:40 AM GMT Monday, November 30, 2009 7:02:27 PM GMT
Windows Ribbon for WinForms, Part 19 – RecentItems Windows Ribbon for WinForms library now supports working with recent items in the application menu. The result of this post is a yet another sample, “16-RecentItems”, found on the project site. What are recent items? Recent items are items in a list which appears in the application menu. They doesn’t have to be file names and they doesn’t have to be recent, although it is recommended. Every item has 3 properties: Label – Item name, usually fi... (more)
category: UX | clicked: 0 | 1 comment | | source: blogs.microsoft.co.il
tags: .NET, Ribbon, Windows 7, C#
9
Shouts

WCF Error: No Corresponding Start Element Open

published 1271 days, 8 hours, 9 minutes ago posted by http://www.google.com/profiles/liam.davieshttp://www.google.com/profiles/liam.davies 1272 days, 17 hours, 34 minutes ago
Wednesday, December 02, 2009 11:48:50 AM GMT Tuesday, December 01, 2009 2:23:28 AM GMT
If you have been searching and have found this then you have probably had a frustrating hour or more with an error of "No Corresponding Start Element Open". No doubt you have rebuilt your WCF service, updated the service reference, maybe even removed and re added the service reference. Still you'll have the error. So maybe one of a couple of things are happening. If your client is not WCF then maybe the generation of the service proxy is making some parameters optional in the request or response. In t... (more)
category: Web Dev | clicked: 86 | 2 comments | | source: instantdevelopment.blogspot.com
tags: WCF, Error
11
Shouts

Convert, Encode And Decode Silverlight WriteableBitmap Data

published 1271 days, 8 hours, 9 minutes ago posted by http://kodierer.blogspot.com/http://kodierer.blogspot.com/ 1272 days, 22 hours, 8 minutes ago
Wednesday, December 02, 2009 11:48:50 AM GMT Monday, November 30, 2009 9:49:32 PM GMT
Rene Schulte provides source code on how to convert a Silverlight WriteableBitmap to and from a byte array. Furthemore he shows how to encode it as a JPEG image and decode it back. (more)
category: Metro | clicked: 4 | 1 comment | | source: kodierer.blogspot.com
tags: Silverlight, dotnet, writeablebitmap, CSharp
10
Shouts

Instant Development: Using an interface to reuse Linq queries

published 1273 days, 3 hours, 19 minutes ago posted by http://www.google.com/profiles/liam.davieshttp://www.google.com/profiles/liam.davies 1275 days, 7 hours, 43 minutes ago
Monday, November 30, 2009 4:38:20 PM GMT Saturday, November 28, 2009 12:14:49 PM GMT
I just read a post about convention based Linq querying and thought I would followup with an alternative method for implementation. One downside that I see with the implementation of building the expression tree is that the entity may not have an Id property. In this case I would definitely want to see a compile error rather than runtime. So a simple solution may be to decorate the entities with a marker interface and the place the constraint on the extension method generic, such as public i... (more)
category: Web Dev | clicked: 2 | 1 comment | | source: instantdevelopment.blogspot.com
tags: Linq
10
Shouts

Moses' Blog | KiGG Design And Architecture – Part 2 Project Structure

published 1274 days, 12 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1275 days, 22 hours, 30 minutes ago
Sunday, November 29, 2009 7:45:00 PM GMT Friday, November 27, 2009 9:27:37 PM GMT
Introduction In part 1 I talked about KiGG high level architecture. In this part I am going to talk about KiGG project structure and summarize the purpose of each project in the solution. I’ll not go into deep details of each project. I’ll save that for some other posts, just be patient with me and stay tuned. Project Structure At the time of writing this post, KiGG consist of 7 projects plus unit test projects which I am not going to cover in this post. (more)
category: Architecture | clicked: 3 | 1 comment | | source: mosesofegypt.net
tags: Software Design, DotNetShoutout, KiGG
9
Shouts

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

published 1273 days, 3 hours, 19 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1275 days, 19 hours, 23 minutes ago
Monday, November 30, 2009 4:38:20 PM GMT Saturday, November 28, 2009 12:34:36 AM GMT
Abstract: In this screencast Mohammad Azam will demonstrate how to perform validation using IDataErrorInfo interface. (more)
category: Web Dev | clicked: 0 | 1 comment | | source: highoncoding.com
tags: ASPNETMVC
9
Shouts

A brief explanation of search engine optimisation

published 1273 days, 3 hours, 19 minutes ago posted by axelnovelaxelnovel 1274 days, 11 hours, 47 minutes ago
Monday, November 30, 2009 4:38:20 PM GMT Sunday, November 29, 2009 8:09:52 AM GMT
Search engine optimisation is vital for any business that wants to be successful online. SEO is a process used by businesses and SEO companies in order to achieve higher rankings in the major search engines. (more)
category: Smart Client | clicked: 3 | 1 comment | | source: www.seoconsult.com.au
10
Shouts

Daily tech links for .net and related technologies - November 28-30, 2009 - Sanjeev Agarwal

published 1273 days, 3 hours, 19 minutes ago posted by sanjeevanasanjeevana 1274 days, 11 hours, 39 minutes ago
Monday, November 30, 2009 4:38:20 PM GMT Sunday, November 29, 2009 8:18:16 AM GMT
Web Development Main Differences between ASP.NET 3.5 and ASP.NET 4.0 - Part 1 - C#, ASP.Net, VB.Net Paging Records Sucks – Use jQuery to Scroll Just In Time Handling Exceptions in ASP.Net MVC 1 Using jQuery Grid With ASP.NET MVC Creating an ASP.NET MVC View by Calling Multiple Actions Using Facebook Connect with ASP.NET MVC and the Facebook Developer Toolkit 3 Binding Installed fonts in dropdownlist using LINQ Extending ASP.NET MVC 2 Templates ASP.NET MVC Application Using IDataErrorInfo Interfac... (more)
category: Web Dev | clicked: 0 | 1 comment | | source: weblogs.asp.net
tags: SQL, Web Service, Architecture, Ajax, WCF, ASP.NET
9
Shouts

VB .Net ListView [ VB .Net Tutorial ]

published 1273 days, 3 hours, 19 minutes ago posted by pons_saravananpons_saravanan 1274 days, 5 hours, 3 minutes ago
Monday, November 30, 2009 4:38:20 PM GMT Sunday, November 29, 2009 2:54:28 PM GMT
VB .Net ListView ASP. Net ListView DataBinding For presenting data in list form, we have several options in Asp.Net like ListView, DataList, Repeater, GridView, DropDownList, etc... Since we have a variety of controls to choose from, the control can be selected based on specific requirements. For e.g. single column with single selection the... (more)
category: Web Dev | clicked: 2 | 1 comment | | source: vbnettutorial.net
8
Shouts

siaqodb-object database for .NET, Mono and Silverlight

published 1273 days, 3 hours, 19 minutes ago posted by siaqodb_usersiaqodb_user 1275 days, 3 hours, 19 minutes ago
Monday, November 30, 2009 4:38:20 PM GMT Saturday, November 28, 2009 4:38:20 PM GMT
Why another database management system? Well… there are many reasons that current Object Databases available on the market are not wide-adopted but one of the simple answer is because performance; even almost all vendors of Object Databases is saying the performance is much higher the any Relational Databases is not always like that and I will try to make a simple example. Suppose we have typical one-to-many scenario and we will involve 2 entities as example: Product and Category. Each prod... (more)
category: Metro | clicked: 4 | 1 comment | | source: siaqodb.com
tags: silverlight database, object database, mono database, linq database
10
Shouts

SQL Server Service accounts

published 1273 days, 3 hours, 19 minutes ago posted by sqlarticlessqlarticles 1274 days, 10 hours, 31 minutes ago
Monday, November 30, 2009 4:38:20 PM GMT Sunday, November 29, 2009 9:26:47 AM GMT
Most entry level DBAs still have the confusion on what is a service account and which is the best to be used and when. This article will take you through that. Depending on the selection that you made while installing SQL Server, you will have the services installed in your server. (more)
category: Data | clicked: 1 | 1 comment | | source: www.sql-articles.com
tags: SQL Server, sqlarticles, service account
12
Shouts

Configuring Data Compression – SQL Server 2008 – Part 4

published 1274 days, 12 minutes ago posted by sqlarticlessqlarticles 1275 days, 14 hours, 50 minutes ago
Sunday, November 29, 2009 7:45:00 PM GMT Saturday, November 28, 2009 5:07:31 AM GMT
In this article we are going to configure Data compression in SQL Server 2008. Configuring data compression is very easy with just an couple of steps. The steps are below Estimate the Compression Ratio (Optional) Configure Data Compression (more)
category: Data | clicked: 1 | 1 comment | | source: www.sql-articles.com
tags: data compression, sqlarticles, Compression