CraigStuntz

Stories submitted by CraigStuntz

The Scrum Compliance(agileanarchy.wordpress.com)

submitted by CraigStuntzCraigStuntz(438) 1 year, 7 months ago

Former Scrum Alliance Creative Director resigns, renounces certifications, and calls for complete overhaul of the organization. read more...

add a comment |category: |Views: 7

tags: another

Unit Testing Html Helpers for ASP.NET MVC(blogs.teamb.com)

submitted by CraigStuntzCraigStuntz(438) 1 year, 8 months ago

How to write unit tests for HTML helpers (which might use HttpContext or ViewContext) without needing a mocking framework. read more...

add a comment |category: |Views: 40

tags: another

jQuery 1.4.2. Released(blog.jquery.com)

submitted by CraigStuntzCraigStuntz(438) 2 years, 3 months ago

jQuery 1.4.2 is now out! This is the second minor release on top of jQuery 1.4, fixing some outstanding bugs from the 1.4 release and landing some nice improvements. read more...

add a comment |category: |Views: 16

tags: another

jqGrid and XSS Security(blogs.teamb.com)

submitted by CraigStuntzCraigStuntz(438) 2 years, 3 months ago

How to protect your site against XSS attacks when using the jqGrid jQuery plug-in. read more...

add a comment |category: |Views: 61

tags: another

Join in LINQ to SQL and LINQ to Entities Considered Messy, Redundant(blogs.teamb.com)

submitted by CraigStuntzCraigStuntz(438) 2 years, 4 months ago

LINQ queries which you write with the join keyword are harder to read and write than queries you write using associations, and they require knowledge of database metadata which is not required otherwise. This introduces the potential for errors and makes maintenance harder. read more...

add a comment |category: |Views: 18

tags: another

Client-side properties and any remote LINQ provider (damieng.com)

submitted by CraigStuntzCraigStuntz(438) 2 years, 4 months ago

How to use computed properties for LINQ to SQL, LINQ to Entities and anything else LINQ enabled with little effort and it works great on .NET 3.5 SP1. read more...

add a comment |category: |Views: 17

tags: another

Projecting Onto a Presentation Model with the Entity Framework and ASP(blogs.teamb.com)

submitted by CraigStuntzCraigStuntz(438) 2 years, 4 months ago

In this post, I will demonstrate how to map entity models to views in an ASP.NET MVC application without worrying about implementation details like eager loading, lazy loading, or having to manually optimize SQL for the task at hand. I will argue that expressing the relationship between an entity model in the presentation model in a LINQ projection is far simpler than other methods of doing this mapping. read more...

add a comment |category: |Views: 19

tags: another

Updating to ASP.NET MVC 2 Preview 2(blogs.teamb.com)

submitted by CraigStuntzCraigStuntz(438) 2 years, 7 months ago

Last week, I updated our main development branch to ASP.NET MVC 2 preview 2 (from preview 1). In this post, I’ll list some of the features I’ve found, and also issues I encountered and how I resolved them. read more...

add a comment |category: |Views: 13

tags: another

Reimagining www.asp.net(john-sheehan.com)

submitted by CraigStuntzCraigStuntz(438) 2 years, 8 months ago

Unfortunately www.asp.net hasn’t evolved along with the community it was intended to support and the current state of affairs on the web. The author says, "I thought to myself, 'How would you build www.asp.net if you could start from scratch?' I decided to write a series of articles to answer that question." read more...

1 comment |category: |Views: 328

tags: another

How to Think Like the ADO.NET Entity Framework(blogs.teamb.com)

submitted by CraigStuntzCraigStuntz(438) 2 years, 8 months ago

A free, online presentation on how to work effectively with the Entity Framework read more...

add a comment |category: |Views: 44

tags: another

Stone Soup(jamescbender.com)

submitted by CraigStuntzCraigStuntz(438) 2 years, 8 months ago

As a consultant, I work with a lot of clients of varying backgrounds, skill levels and willingness to explore new techniques and tools. Some clients are very open to this. Then, there are clients who are a little more resistant. So, how do you win these people over? read more...

add a comment |category: |Views: 5

tags: another

ASP.NET Routing and ASP.NET MVC(blogs.teamb.com)

submitted by CraigStuntzCraigStuntz(438) 3 years, 2 months ago

A detailed examination of how ASP.NET MVC and ASP.NET Routing interact and the consequences of those interactions. read more...

add a comment |category: |Views: 20

tags: another

ASP.NET MVC TempData Is Really RedirectData(blogs.teamb.com)

submitted by CraigStuntzCraigStuntz(438) 3 years, 3 months ago

Many people seem to be confused about the TempData feature in ASP.NET MVC. TempData behaves like the ViewData dictionary, except that it persists until the next request from the same browser. Because of this, TempData should only be used when you know exactly what the next request is going to be. Realistically, this means that you should only use TempData immediately before you redirect ! read more...

add a comment |category: |Views: 49

tags: another

Tips & Tricks: Use DebuggerDisplayAttribute for easier debugging(gregbeech.com)

submitted by CraigStuntzCraigStuntz(438) 3 years, 8 months ago

When debugging, it's common to hover over an object to get a quick view of what its properties are. This is where DebuggerDisplayAttribute comes in. The format string looks similar to normal .NET format strings in that the values to replace are between curly braces, but instead of being told what to substitute the debugger treats these values as expressions and attempts to evaluate them using the current context. read more...

add a comment |category: |Views: 225

tags: another

Filters in ASP.NET MVC Preview 4(haacked.com)

submitted by CraigStuntzCraigStuntz(438) 3 years, 9 months ago

In CodePlex Preview 4 of ASP.NET MVC, we split out our action filters into four types of filters, each of which is an interface. To write a custom filter, you simply need to create an attribute that also implements one of the four interfaces I mentioned. read more...

add a comment |category: |Views: 187

tags: another

What's new for Entity Framework in the VS 2008 SP1?(blogs.msdn.com)

submitted by CraigStuntzCraigStuntz(438) 3 years, 9 months ago

Between the Visual Studio 200 SP1 beta and RTM , there are a number of fixes and even a few new things to be found. What's in ADO.NET? Check out this list for what's new in the Entity Framework and Entity Designer. read more...

add a comment |category: |Views: 53

tags: another