Steves
Name: Steves
Score: 28,401.44
Last Seen: 476 days, 4 hours, 16 minutes ago
Member Since: 1 February, 2009
DotNetShoutout
atom rss
12
Shouts

Dynamic Search Objects Part 6—the Search Service « Have Code, Will Travel

published 1265 days, 11 hours, 49 minutes ago posted by psandlerpsandler 1268 days, 1 minute ago
Friday, December 04, 2009 9:39:23 AM GMT Tuesday, December 01, 2009 9:27:36 PM GMT
If you’ve read this series up to this point, you pretty much have everything you need to implement dynamic queries in your own application.  Just a few notes to wrap up the series and I will get on to other topics.Creating a Search Service Facade Depending on your requirements, it may be perfectly reasonable to create a tight coupling b... (more)
category: Data | clicked: 1 | comment | | source: psandler.wordpress.com
tags: LLBLGen SQL "Dynamic SQL"
9
Shouts

Silverlight client-side database

published 1265 days, 11 hours, 49 minutes ago posted by siaqodb_usersiaqodb_user 1267 days, 23 hours, 12 minutes ago
Friday, December 04, 2009 9:39:23 AM GMT Tuesday, December 01, 2009 10:16:33 PM GMT
Many times on Silverlight you need to store data on client machine. Some examples would be: undo/redo functionality for your application, games user data, demos/presentations to clients of your application, store data locally while user navigate on your application and only at the end you want to commit changes on server side storage and examples can continue. Also if you use Silverlight Out-Of-Browser application you almost need mandatory a client – side ... (more)
category: Metro | clicked: 0 | comment | | source: siaqodb.com
11
Shouts

LINQ to CSV using DynamicObject

published 1265 days, 11 hours, 49 minutes ago posted by KodefuGuruKodefuGuru 1267 days, 19 hours, 2 minutes ago
Friday, December 04, 2009 9:39:23 AM GMT Wednesday, December 02, 2009 2:26:10 AM GMT
When we wrote LINQ in Action we included a sample of how to simply query against a CSV file using the following LINQ query: From line In File.ReadAllLines(“books.csv”) Where Not Line.StartsWith(“#”) Let parts = line.Split(“,”c) Select Isbn = parts(0), Title = parts(1), Publisher = parts(3) While this code does make dealing with CSV easier, it would be nicer if we could refer to our columns as if they were properties where the property name came from the header row in the CSV file, perhaps using... (more)
category: How To | clicked: 2 | comment | | source: www.thinqlinq.com
tags: dynamic, Linq, CSV
12
Shouts

SQL SERVER – Azure Start Guide – Step by Step Installation Guide « Journey to SQL Authority with Pinal Dave

published 1266 days, 12 hours, 21 minutes ago posted by pinaldavepinaldave 1267 days, 17 hours, 33 minutes ago
Thursday, December 03, 2009 9:06:40 AM GMT Wednesday, December 02, 2009 3:55:20 AM GMT
As SQL Azure CTP is released I have included here step by step guide for how to configure the CTP. For pricing and introduction please read SQLAuthority News – SQL Azure – Microsoft SQL Data Services – Introduction and Pricing First it has to be configured online at https://sql.azure.com/ Login using your Live ID Type in invitation code received from Microsoft for CTP. You can request one for your self here. Accept the TOU. Once logged it you will have to create server username and password. ... (more)
category: Data | clicked: 0 | 1 comment | | source: blog.sqlauthority.com
tags: SQL, SQLServer, pinaldave, SQLAuthority
13
Shouts

A* pathfinding search in C# - Part 3

published 1266 days, 12 hours, 21 minutes ago posted by lenielleniel 1267 days, 17 hours, 23 minutes ago
Thursday, December 03, 2009 9:06:40 AM GMT Wednesday, December 02, 2009 4:05:17 AM GMT
This is the last installment in the series about A* search. The C# source code implemented is available in the final part of this post. As promised in the last words of A* pathfinding search in C# - Part 2 today we’re gonna run a test case using the Romania map. This post shows a test case in which the application outputs the shortest path from Arad to Bucharest. I used the ViewOtherPaths method to show the different possible routes. This way we can have a look at why the A* algorithm has chosen such sho... (more)
category: How To | clicked: 0 | comment | | source: www.leniel.net
tags: data structures, priority queue, algorithms, Programming, C#, A*, immutable data structures, Haversine, geocoder
12
Shouts

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

published 1266 days, 12 hours, 21 minutes ago posted by http://atanashristov.blogspot.com/http://atanashristov.blogspot.com/ 1267 days, 13 hours, 30 minutes ago
Thursday, December 03, 2009 9:06:40 AM GMT Wednesday, December 02, 2009 7:58:18 AM GMT
Factories are objects that encapsulate the logic for creating other objects. Factory object could create one or another object based on some configuration parameters. Or the factory could decide what kind of concrete object to create based on a parameter to some object creational method. For example if the method received post-code the factory creates City object and when the parameter is an email address the factory creates Customer object. In that way one might create factory to select one or anoth... (more)
category: How To | clicked: 1 | comment | | source: atanashristov.blogspot.com
tags: Design Patterns
11
Shouts

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

published 1265 days, 11 hours, 49 minutes ago posted by http://atanashristov.blogspot.com/http://atanashristov.blogspot.com/ 1267 days, 13 hours, 23 minutes ago
Friday, December 04, 2009 9:39:23 AM GMT Wednesday, December 02, 2009 8:05:13 AM GMT
The Singleton pattern gives us a way to restrict the instantiation of objects of given class to certain number, in the common usage to one only. The Singleton class instantiates itself and works as a global repository for an instance of itself. For example we share a database connection or log writer across all threads in one process. Implementation of Singleton pattern Here i'm going to implement Singleton class in C#. The class should hide its constructor. It has also GetInstance() method that... (more)
category: How To | clicked: 0 | 1 comment | | source: atanashristov.blogspot.com
tags: Design Patterns
12
Shouts

Atanas Hristov: Design Patterns – Chain of Responsibility Pattern - blog about programming.

published 1264 days, 6 hours, 14 minutes ago posted by http://atanashristov.blogspot.com/http://atanashristov.blogspot.com/ 1267 days, 13 hours, 18 minutes ago
Saturday, December 05, 2009 3:14:36 PM GMT Wednesday, December 02, 2009 8:10:11 AM GMT
Imagine you have complicated decision logic and you’ve got a big if-then-else like structure in your code which you want to simplify. The Chain of Responsibility Pattern is a good way for code refactoring in such situation. It will make the code more flexible and easy to support and modify in the future. You prepare a set of interdependent chain handler classes linked in a chain. Every chain handler class implements part of the decision logic and has a link to next chain handler object. A request da... (more)
category: How To | clicked: 0 | 1 comment | | source: atanashristov.blogspot.com
tags: Design Patterns
10
Shouts

ADO.NET Data Services Team Blog : Using the Silverlight 4.0 WCF Data Services Client Library

published 1266 days, 12 hours, 21 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1267 days, 12 hours, 27 minutes ago
Thursday, December 03, 2009 9:06:40 AM GMT Wednesday, December 02, 2009 9:00:47 AM GMT
Using the Silverlight 4.0 WCF Data Services Client LibraryPublished 01 December 09 11:13 AM | dpblogs  Recently Microsoft released Silverlight 4 Beta which includes an update to the Data Services Silverlight client. The update includes most of the new features previewed in the ADO.NET Data Services CTP2 - see this blog post for a complete list of the features in CTP2. The new Silverlight 4.0 Data Services client library also includes improvements to the databinding feature to make binding in an asynch... (more)
category: Web Dev | clicked: 0 | comment | | source: blogs.msdn.com
tags: Silverlight, Silverlight 4 Beta, DataServices, WCF, WCF DataServices
10
Shouts

Meta-Me : Tip 47 – How fix-up can make it hard to change relationships

published 1266 days, 12 hours, 21 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1267 days, 12 hours, 15 minutes ago
Thursday, December 03, 2009 9:06:40 AM GMT Wednesday, December 02, 2009 9:13:24 AM GMT
Tip 47 – How fix-up can make it hard to change relationships Problem: Take this code: Category oldCategory = ctx.Categories     .Include("Products")     .First(c => c.Name == "Drink"); Category newCategory = new Category {Name = "Beverage"}; foreach(Product product in oldCategory.Products) {     newCategory.Products.Add(product); } Ignore for a second that in this example the solution is probably just to rename the oldCategory "Beverages" - Coming up with real world samples gets hard... (more)
category: Architecture | clicked: 0 | comment | | source: blogs.msdn.com
tags: entityframework 4, entityframework4, Entity Framework, EF4, EF 4.0, entityframework, Tips
11
Shouts

Quick Introduction to Dependency Injection

published 1265 days, 11 hours, 49 minutes ago posted by CygonCygon 1267 days, 11 hours, 39 minutes ago
Friday, December 04, 2009 9:39:23 AM GMT Wednesday, December 02, 2009 9:49:15 AM GMT
An easy to understand introduction to dependency injection in .NET using the Ninject inversion of control container. The dependency injection principle is a design concept by which classes and entire software components can be designed to be isolatable, reducing tight coupling, promoting reusability and allowing for unit tests to mock the dependencies of a class or component. (more)
category: Architecture | clicked: 3 | comment | | source: www.nuclex.org
tags: .NET, Inversion of control, Design Pattern, C#, dependency injection
12
Shouts

Caliburn: Binding Conventions

published 1266 days, 12 hours, 21 minutes ago posted by nigel-sampsonnigel-sampson 1267 days, 11 hours, 33 minutes ago
Thursday, December 03, 2009 9:06:40 AM GMT Wednesday, December 02, 2009 9:55:07 AM GMT
Adding more convention over configuration to data binding in Silverlight and WPF (more)
category: Metro | clicked: 4 | comment | | source: compiledexperience.com
tags: Silverlight, WPF, Caliburn
10
Shouts

Silverlight 3 RIA Services :- Cannot resolve symbol web

published 1266 days, 12 hours, 21 minutes ago posted by http://www.smallworkarounds.net/http://www.smallworkarounds.net/ 1267 days, 9 hours, 47 minutes ago
Thursday, December 03, 2009 9:06:40 AM GMT Wednesday, December 02, 2009 11:40:48 AM GMT
If you are using RIA Services with Silverlight and facing the problem that Web part or the server part of the project is not getting recognized on the client side or the Silverlight side, then one probable and main cause is that you are using Resharper and if that’s the case then the below solution will help you tackle this problem. Before applying this solution do check that RIA Services is installed on your machine because if its not installed then the cause of this problem would be RIA Services itsel... (more)
category: Metro | clicked: 1 | 1 comment | | source: www.smallworkarounds.net
tags: RIA Services, Silverlight 3
11
Shouts

Simple Logging Façade released on codeplex today – Colin Eberhardt's Adventures in WPF

published 1264 days, 6 hours, 14 minutes ago posted by FantasticMrFishFantasticMrFish 1267 days, 1 hour, 44 minutes ago
Saturday, December 05, 2009 3:14:36 PM GMT Wednesday, December 02, 2009 7:44:26 PM GMT
Today, Philipp Sumi and I and are proud to announce the release of SLF – the Simple Logging Façade: SLF is a framework with a simple but ambitious mission: To provide every developer with the means to easily plug in logging functionality into her application. As such, it aims at two fundamental goals:Simplicity: SLF allows you to plug in solid logging functionality into your application with literally one line of code, while providing you with an upgrade path to complex logging scenarios at any time... (more)
category: Architecture | clicked: 0 | comment | | source: www.scottlogic.co.uk
tags: Open Source, logging
11
Shouts

Create a Silverlight Europe weather map

published 1266 days, 12 hours, 21 minutes ago posted by KMilKMil 1267 days, 1 hour, 25 minutes ago
Thursday, December 03, 2009 9:06:40 AM GMT Wednesday, December 02, 2009 8:02:39 PM GMT
In this article, Andrej Tozon will walk you through the process of creating an Europe weather map application in Silverlight by using the Bing Maps Silverlight Control. (more)
category: Metro | clicked: 4 | comment | | source: www.silverlightshow.net
10
Shouts

dnrTV - Show #160 - Adam Cogan on TFS and Visual Studio 2010 Part 2

published 1266 days, 12 hours, 21 minutes ago posted by mithumithu 1267 days, 1 hour, 17 minutes ago
Thursday, December 03, 2009 9:06:40 AM GMT Wednesday, December 02, 2009 8:11:10 PM GMT
Adam and Carl continue to discuss using Visual Studio Ultimate and Team System to manage your projects and proposals. Several cutting edge 3rd party apps help out as well. (more)
category: Screencast | clicked: 3 | 1 comment | | source: www.dnrtv.com
tags: Visual Studio Ultimate, VS, Party Apps, Visual Studio 2010, Visual Studio, dnrTV, VS2010, team system
11
Shouts

Including related entities in your domain service calls

published 1268 days, 2 hours, 28 minutes ago posted by http://micahlmartin.myopenid.com/http://micahlmartin.myopenid.com/ 1270 days, 1 hour, 36 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
6
Shouts

How to Run IE6, IE7 and IE8 on Windows 7 HOME - Craig Buckler

published 1269 days, 4 hours, 50 minutes ago posted by StevesSteves 1270 days, 42 minutes ago
Monday, November 30, 2009 4:38:20 PM GMT Sunday, November 29, 2009 8:46:11 PM GMT
My recent article, Run IE6, IE7, and IE8 on the Same Machine Using Windows 7 XP Mode, provided instructions for installing Virtual PC and XP Mode on a Windows 7 PC. Unfortunately, it only worked on the Professional, Ultimate or Enterprise versions of Windows 7. Windows 7 Home Basic and Premium users are unable to use XP Mode. This is unfortunate since the vast majority of new PCs have those editions installed. However, there is a workaround that allows Windows 7 Home developers to use XP Mode integratio... (more)
category: How To | clicked: 2 | comment | | source: www.sitepoint.com
tags: IE8, IE, IE7, IE6
9
Shouts

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

published 1269 days, 4 hours, 50 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 1271 days, 20 hours, 54 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
7
Shouts

Executing actions on the UI thread

posted by http://byteflux.myopenid.com/http://byteflux.myopenid.com/ 1272 days, 8 hours, 42 minutes ago
Friday, November 27, 2009 12:46:17 PM GMT
Executing actions on the UI thread by Sebastian Negomireanu on Nov.27, 2009, under .NET, C#, Code When working with frameworks like Silverlight, WPF or Windows Forms you often encounter the need to ensure a piece of code runs on the UI thread. Below, I present a clean way to do this using the SynchronizationContext class. (more)
category: Metro | clicked: 2 | comment | | source: byteflux.me
tags: Extension Methods, Silverlight, Windows Forms, C#, Synchronization, windows presentation foundation, Threading