donnfelker

Stories submitted by donnfelker

Auto-Creating Your DB with Active Record(blog.donnfelker.com)

submitted by donnfelkerdonnfelker(1285) 2 years, 6 months ago

A demonstration of how to automatically create a SQL Db on the fly with SQL Express. The demonstration also includes ASP.NET MVC, Spark, Active Record, Castle Windsor. read more...

add a comment |category: |Views: 13

tags: another

ReSharper Templates (live and file)(blog.donnfelker.com)

submitted by donnfelkerdonnfelker(1285) 3 years ago

A set of NUnit, Rhino Mocks and other templates for use in your ReSharper instance. read more...

add a comment |category: |Views: 46

tags: another

How To: REST Services in WCF 3.5 Part 2 - The POST(blog.donnfelker.com)

submitted by donnfelkerdonnfelker(1285) 3 years, 2 months ago

Learn how to utilize the WebInvoke Attribute in WCF 3.5 to implement a RESTful Web service that accepts POST requests. read more...

add a comment |category: |Views: 200

tags: another

How To: Implement a simple REST Services in WCF 3.5 Part 1(blog.donnfelker.com)

submitted by donnfelkerdonnfelker(1285) 3 years, 3 months ago

A real life introduction to how to program REST based services with WCF. With full working source download! read more...

add a comment |category: |Views: 101

tags: another

Integration Testing - End to End(blog.donnfelker.com)

submitted by donnfelkerdonnfelker(1285) 3 years, 3 months ago

A detailed blog post that outlines exactly what integration testing is. Its not unit testing, its integration testing. Full examples provided. read more...

add a comment |category: |Views: 23

tags: another

My Visual Studio Settings - My Altered Vibrant Ink Settings Setup(blog.donnfelker.com)

submitted by donnfelkerdonnfelker(1285) 3 years, 4 months ago

Custom DARK .NET Settings file with a preview. You will need Consolas for these settings. read more...

add a comment |category: |Views: 60

tags: another

4 Common Follies Made In Unit/Integration Testing(blog.donnfelker.com)

submitted by donnfelkerdonnfelker(1285) 3 years, 4 months ago

Review 4 common unit testing and integration testing follies. From testing with databases to not testing components because "You think they work". read more...

add a comment |category: |Views: 19

tags: another

Resizing a VHD and a Volume(blog.donnfelker.com)

submitted by donnfelkerdonnfelker(1285) 3 years, 4 months ago

Learn how to resize a Virtual PC VHD File so that the C drive has more space. VERY VERY Helpful when you run out of room on that VPC! read more...

add a comment |category: |Views: 26

tags: another

Intro To Microsoft Unity - Configuring the Container through XML (blog.donnfelker.com)

submitted by donnfelkerdonnfelker(1285) 3 years, 8 months ago

Learn how to configure Microsoft Unity through manual registration and XML registration. A full sample application is included for download. read more...

add a comment |category: |Views: 49

tags: another

Using iTextSharp To Watermark/Write Text to Existing PDF's(blog.donnfelker.com)

submitted by donnfelkerdonnfelker(1285) 3 years, 9 months ago

This tutorial shows you how to write text to an existing PDF by using iTextSharp. Learn how to write text on top of the document, below the document and at various locations through the code and full solution provided. read more...

add a comment |category: |Views: 1732

tags: another

The Importance of Unit Testing WCF Attributes(blog.donnfelker.com)

submitted by donnfelkerdonnfelker(1285) 3 years, 9 months ago

What happens when you don't test certain WCF Attribute values in your unit tests? Sometimes nothing - and sometimes all hell breaks loose. I'm scared of the latter. :) This is a quick and easy intro into how to unit test your operation contract attribute values. read more...

add a comment |category: |Views: 200

tags: another

NUnit 2.4.7 Released w/ RowTest Attribute (example included)(blog.donnfelker.com)

submitted by donnfelkerdonnfelker(1285) 3 years, 10 months ago

NUnit now includes the RowTest extension, written by Andreas Schlapsi, in it's extension assemblies. This extension allows you to write test methods that take arguments and to provide multiple sets of argument values using the RowAttribute. To use RowTest, your test must reference the nunit.framework.extensions assembly. This post covers how to utilize this attribute. read more...

add a comment |category: |Views: 40

tags: another

Watermarking Images in ASP.NET with an HttpHandler(blog.donnfelker.com)

submitted by donnfelkerdonnfelker(1285) 4 years, 4 months ago

Learn how to easily watermark images with a simple HttpHandler. Apply custom text that will overlay the image. The the text can be transparent or non-transparent. read more...

add a comment |category: |Views: 168

tags: another

Automated Form Posting with .NET / ASP.NET's CURL(blog.donnfelker.com)

submitted by donnfelkerdonnfelker(1285) 4 years, 4 months ago

Learn how to use the HttpRequest object and Fiddler to create web requests and post values to forms in a runtime environment. read more...

add a comment |category: |Views: 30

tags: another

CodeSmith Screen Cast(blog.donnfelker.com)

submitted by donnfelkerdonnfelker(1285) 4 years, 5 months ago

Learn how to utilize the DatabaseSchema and ExportToFile methods of a template to create files based upon your database schema. read more...

add a comment |category: |Views: 11

tags: another

Returning XML Column Data As a Set of Data from SQL(blog.donnfelker.com)

submitted by donnfelkerdonnfelker(1285) 4 years, 6 months ago

I needed to write something like this ... SELECT * FROM CustomerTest WHERE Customer_Id = 1; The data returned needed to return the row as well as the data inside of the XML Column in that row, in the same set. (The data in the XML column needed to be returned as sets of records as well.) The XML Contained was simple XML that looked like this... read more...

add a comment |category: |Views: 2

tags: another