Aashi84

Stories kicked by Aashi84

.NET 4.0 and System.Collections.Concurrent.ConcurrentBag(www.codethinked.com)

submitted by pitadev_ajpitadev_aj(300) 2 years, 3 months ago

Another in-depth look at a new namespace in .NET 4.0 and how it can help with multithreading. read more...

1 comment |category: |Views: 386

tags: another

Binding UI Events from View to commands in ViewModel in Silverlight 4(blog.roboblob.com)

submitted by spavkovspavkov(1708) 2 years, 4 months ago

In previous two posts we covered wiring up the Views and ViewModels and Blendability and showing ModalDialogs in MVVM way. Today we will touch another problem that people starting with MVVM very often fail to address properly: Handling the UI Events of the View in the ViewModel while avoiding placing any logic in code behind of the View. So our design goals for this post are: * We want to be able to wire-up UI Events to the commands in ViewModel via DataBinding in Xaml without any code behind in the View * View should not be aware of the ViewModel’s type or any other details of its existence – View should just use Silverlight’s DataBinding to access its ViewModel public properties (its DataContext) regardless of what is actually set to be there * We want to be able to handle any event that occurs in View (that includes not only Button clicks but also Mouse events, Drag and Drop events, Loaded events etc). read more...

add a comment |category: |Views: 281

tags: another

Context and Best Practices(www.lostechies.com)

submitted by usshermussherm(5285) 2 years, 4 months ago

The Right Way versus the Better Way; Default Architectures; Starting Small read more...

add a comment |category: |Views: 505

tags: another

SQL SERVER – Find Statistics Update Date – Update Statistics(blog.sqlauthority.com)

submitted by pinaldavepinaldave(9662) 2 years, 4 months ago

Statistics are one of the most important factors of a database as it contains information about how data is distributed in the database objects (tables, indexes etc). It is quite common to listen people talking about not optimal plan and expired statistics. Quite often I have heard the suggestion to update the statistics if query is not optimal. Please note that there are many other factors for query to not perform well; expired statistics are one of them for sure. read more...

3 comments |category: |Views: 193

tags: another

Translating routes (ASP.NET MVC and Webforms)(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 2 years, 4 months ago

For one of the first blog posts of the new year, I thought about doing something cool. And being someone working with ASP.NET MVC, I thought about a cool thing related to that: let’s do something with routes! Since System.Web.Routing is not limited to ASP.NET MVC, this post will also play nice with ASP.NET Webforms. But what’s the cool thing? How about… translating route values? read more...

1 comment |category: |Views: 251

tags: another

.NET 4.0 and System.Threading.Tasks(www.codethinked.com)

submitted by veverkapveverkap(815) 2 years, 4 months ago

Quick look at threading in .NET 4.0 and the new System.Threading.Tasks. read more...

1 comment |category: |Views: 653

tags: another

Measuring the Performance of Asynchronous Controllers(blog.codeville.net)

submitted by desmonddesmond(2014) 2 years, 4 months ago

It's easy enough to start using Asynchronous Controllers with ASP.NET MVC 2.0. But how do you know whether it's giving you any benefits? You might be surprised to learn that, in many default scenarios, you won't get any benefit unless you also make some crucial configuration changes. In this blog post you'll see a simple way to load test your asynchronous controllers, and find a rundown of important configuration options that will dramatically affect their behavior. read more...

add a comment |category: |Views: 212

tags: another

About Technical Debates (and Web Forms vs. MVC in particular)(weblogs.asp.net)

submitted by johnsheehanjohnsheehan(4785) 2 years, 4 months ago

Technical debates are discussed endlessly within the blog-o-sphere/twitter-verse, and they range across every developer community. Each language, framework, tool, and platform inevitably has at least a few going on at any particular point in time. Here are a few observations I’ve made over the years about technical debates in general, as well as some comments about some of the recent discussions I’ve seen recently about the topic of ASP.NET Web Forms and ASP.NET MVC in particular. read more...

add a comment |category: |Views: 5

tags: another

Table Per Type Inheritance in Entity Framework(blogs.microsoft.co.il)

submitted by gilfgilf(2139) 2 years, 4 months ago

The first inheritance mapping I’m going to show is called Table Per Type or TPT. Before I start with the example lets define what is TPT. read more...

1 comment |category: |Views: 373

tags: another

Diving a Little Deeper into AutoMapper(derans.blogspot.com)

submitted by johnsheehanjohnsheehan(4785) 2 years, 4 months ago

Every time I use AutoMapper, I think this is such an awesome tool! I think it’s hilarious to go back and read my first post in April where it states, “Now automapper is one thing I'm not sure I'll benefit from yet.” and I go on to say, “I'm pretty confident that I will eventually slap myself in the face for posting this just because I'm sure it is an awesome tool that I will one day see as VERY cool, but right now...I don't”. Well, I’m slapping myself :) read more...

add a comment |category: |Views: 517

tags: another

Constructor over-injection anti-pattern(jeffreypalermo.com)

submitted by ali62bali62b(125) 2 years, 4 months ago

I’m interested in structure. We hear lots of talk about convention over configuration. I’m all for structure over convention (over configuration). This post is about laying out some code that is an anti-pattern. It uses 100% constructor injection. This code makes it easy for a container to bootstrap the construction of the objects, but let’s take a look at why this specific scenario is an anti-pattern and what design would be better. read more...

1 comment |category: |Views: 492

tags: another

Code Camp Raffleboard(www.kodefuguru.com)

submitted by KodefuGuruKodefuGuru(2818) 2 years, 4 months ago

I’m sure one of the most tedious tasks for any conference organizer is to give away hundreds of swag at the end of the conference. By that point, you’re tired and you’re ready to go home. But it’s an essential closer for many people, so we do it any; drawing ticket after blue ticket. There must be another way. read more...

add a comment |category: |Views: 6

tags: another

Listen to Me on the Community Megaphone Podcast(www.kevgriffin.com)

submitted by 1kevgriff1kevgriff(70) 2 years, 4 months ago

I’ve been waiting for this announcement for a little while, but I’m finally pleased to announce that I had the pleasure of being the first guest on the new Community Megaphone Podcast. In this episode, I talked with Dane Morgridge (@danemorgridge) and Andrew Duthie (@devhammer) about general stuff I’m interested in. Topics included Windows 7 for developers, jQuery, and the developer community. read more...

add a comment |category: |Views: 1

tags: another

Do Not Use Telerik DNN Modules With DotNetNuke 5.2.1(mynetnuke.com)

submitted by mynetnukemynetnuke(522) 2 years, 4 months ago

I have been trying to install Telerik DNN Modules Trial zip package over a fresh DotNetNuke 5.2.1 installation. However, it keeps me away from it. read more...

add a comment |category: |Views: 30

tags: another

Passing references to events (almost)(blog.functionalfun.net)

submitted by samuel_d_jacksamuel_d_jack(415) 3 years, 6 months ago

Have you ever needed to pass a reference to an event into another object? Think you can't do it in C#? This article shows how you can - some times! read more...

add a comment |category: |Views: 11

tags: another

How to Query Active Directory using LDAP in SQL Server 2000 / 2005 ?(gchandra.com)

submitted by gchandragchandra(330) 4 years, 2 months ago

This article is about configuring SQL Server to query Active Directory using LDAP. It also lists the possible columns that can be used with LDAP query. read more...

add a comment |category: |Views: 1952

tags: another