DotNetShoutout - Stories tagged with .NET 3.5 SP1
6
Shouts

Finally! Entity Framework working in fully disconnected N-tier web app

posted by oazabiroazabir 1129 days, 15 hours, 35 minutes ago
Tuesday, May 18, 2010 4:56:00 AM GMT
Entity Framework was supposed to solve the problem of Linq to SQL, which requires endless hacks to make it work in n-tier world. Not only did Entity Framework solve none of the L2S problems, but also it made it even more difficult to use and hack it for n-tier scenarios. Learn how I solved all disconnected scenarios and made 100% unit testable EF. (more)
category: Web Dev | clicked: 3 | 1 comment | | source: omaralzabir.com
tags: Entity Framework, .NET 3.5 SP1, TDD, Unit Test
6
Shouts

WCF based client-server version – Part 2 : Tabbles developers' blog

posted by TabblesTabbles 1151 days, 37 minutes ago
Monday, April 26, 2010 7:53:36 PM GMT
We’re missing some of the theory about if and how transactions could be implemented in our WCF-based custom database, the whole story here: http://social.msdn.microsoft.com/Forums/en/wcf/thread/1371d0dd-c65a-491e-a3cf-2fb7b4919961 Thanks to everyone who’s willing to provide any help! (more)
category: Architecture | clicked: 2 | comment | | source: tabbles.net
tags: .NET 3.5 SP1, Database, WCF, Transactions
3
Shouts

Goodbye FileSystemWatcher – issues with tracking file movements in Windows Explorer

posted by TabblesTabbles 1207 days, 4 hours, 2 minutes ago
Monday, March 01, 2010 4:28:48 PM GMT
The problem: when files are being moved, they need to “carry” their tabbles with them. To do that, we first approached the FileSystemWatcher technology: this proved unreliable in many ways when it goes to moving files (feel free to ask for details). Then we considered the file system mini-filter technology (the one commonly used by anti-viruses); apart from the issues related to integrating... (more)
category: Architecture | clicked: 2 | comment | | source: tabbles.net
tags: FileSystemWatcher, file system mini filter, .NET 3.5 SP1, tabbles
7
Shouts

"Hello world" F# + WPF | Channel 9 | Maurizio Colucci from tabbles.net

published 1206 days, 5 hours, 12 minutes ago posted by TabblesTabbles 1207 days, 6 hours, 34 minutes ago
Tuesday, March 02, 2010 3:18:28 PM GMT Monday, March 01, 2010 1:56:09 PM GMT
Tabbles is one of the few commercial products written entirely in F# - and all the GUI is done using WPF, making it pretty unique. This is the first of two posts about getting started with F# + WPF. Enjoy! (more)
category: UX | clicked: 3 | comment | | source: channel9.msdn.com
tags: WinFS, .NET 3.5 SP1, tabbles, WPF, virtual file system, file tagging, F#
9
Shouts

Silverlight : Listening to Dependency Property Change notification of a given Element

published 1295 days, 11 hours, 24 minutes ago posted by http://amazedsaint.blogspot.com/http://amazedsaint.blogspot.com/ 1295 days, 23 hours, 42 minutes ago
Thursday, December 03, 2009 9:06:40 AM GMT Wednesday, December 02, 2009 8:48:25 PM GMT
I was digging a bit around Silverlight Dependency properties, mainly to see how to receive change notification when ever a dependency property is changed. In WPF, this is straight forward, you may use the DependencyPropertyDescriptor, and call AddValueChanged. Like this. DependencyPropertyDescriptor desc = DependencyPropertyDescriptor.FromProperty (UIElement.VisibilityProperty, typeof(UIElement)); desc.AddValueChanged (this.myLabel, new EventHandler(VisibilityChanged));   Now, how to do this ... (more)
category: Metro | clicked: 4 | 1 comment | | source: amazedsaint.blogspot.com
tags: Silverlight, .NET 3.5 SP1, C#