Davbis93

Stories kicked by friends of Davbis93

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

Large or asynchronous file uploads in ASP.NET MVC(dimebrain.com)

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

The challenge of uploading large files in ASP.NET through HTTP is not a new challenge. In addition to handling large files, users often request an experience that shows the progress of an upload as it occurs. When you have either or both of these requirements, or if you simply need direct control of a stream of file data uploaded from a browser, you invariably hit the wall. I set about solving the problem in an ASP.NET MVC-specific way. read more...

add a comment |category: |Views: 866

tags: another

Dependency Injection For Dummies(kevinwilliampang.com)

submitted by kpanghmckpanghmc(2055) 2 years, 6 months ago

The goal of this series is to introduce programming patterns and practices to developers who have little to no familiarity with them. This series does not intend to dive into the intricacies of each pattern / practice, but to give a brief overview that will (hopefully) inspire developers to learn more about them. read more...

add a comment |category: |Views: 617

tags: another

Why Linq2NHibernate is not production ready(codeofrob.com)

submitted by robashtonrobashton(384) 2 years, 6 months ago

An opinion on why you shouldn't be using Linq2Nhibernate in production systems read more...

add a comment |category: |Views: 85

tags: another

CSS transparency in all the browsers(subodhpatel.co.cc)

submitted by subodhpatelsubodhpatel(120) 2 years, 6 months ago

There are many cross-browser issues and transparency is one of the wierd issues among them.All the browsers treat transparency in a different way. Here is the possible solution for the IE6 PNG background image transparency fix. read more...

add a comment |category: |Views: 388

tags: another

Tekpub: Concepts - Lambdas(tekpub.com)

submitted by javeryjavery(5523) 2 years, 6 months ago

A new episode in the concepts series at TekPub covering Lambdas. read more...

add a comment |category: |Views: 253

tags: another

NHibernate and Execution Plans(objectreference.net)

submitted by Vort3XVort3X(1335) 2 years, 7 months ago

Lately we have been investigating ORM’s (Object Relational Mapping) frameworks for use on a large enterprise level website which we been given the rare opportunity to rebuild from the ground up in Microsoft MVC. We decided to go ahead with NHibernate until stumbled across a major issue causing queries run by NHibernate not re-using SQL Server execution plans. read more...

add a comment |category: |Views: 275

tags: another

NHibernate and Execution Plans(objectreference.net)

submitted by Vort3XVort3X(1335) 2 years, 7 months ago

Lately we have been investigating ORM’s (Object Relational Mapping) frameworks for use on a large enterprise level website which we been given the rare opportunity to rebuild from the ground up in Microsoft MVC. We decided to go ahead with NHibernate until stumbled across a major issue causing queries run by NHibernate not re-using SQL Server execution plans. read more...

add a comment |category: |Views: 275

tags: another

Channel 9 Learning Center – Just Launched!(blogs.msdn.com)

submitted by jbarnesjbarnes(3479) 2 years, 7 months ago

The Channel 9 Learning Center is the destination for free technical training on emerging Microsoft products and technologies. The Learning Center consists of a set of courses with each course including a set of videos, hands-on labs, and source code samples to get you up-to-speed quickly. read more...

add a comment |category: |Views: 161

tags: another

Validating your XML Documents w/ XSD Schema(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 2 years, 7 months ago

Taking a look at how to perform XML message validation by using an XSD document schema. By creating an XSD schema you can simply and easily validate the structure and the data content of your document which will ensure your message is well formed. read more...

add a comment |category: |Views: 158

tags: another

ReSharper Discount & Extended Trial(web2asp.net)

submitted by sedgeysedgey(1728) 2 years, 8 months ago

I have had a few emails recently asking if I am still able to obtain the 10% discount coupons and 60 day extended trial for ReSharper read more...

5 comments |category: |Views: 749

tags: another

xVal v1.0 is now released(blog.codeville.net)

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

In case you’re not aware, xVal is a validation helper for ASP.NET MVC that lets you use your own choice of server-side validation framework (e.g., Microsoft’s DataAnnotations attributes, or Castle Validator, or NHibernate Validaion) and dynamically generates client-side validation code from your rules. Version 1.0 adds new features including dynamic client-side validation summaries and remote (ajax) validation rules. read more...

add a comment |category: |Views: 218

tags: another

Design Patterns – Using the Builder Pattern in C#(dotnetcube.com)

submitted by dncdudedncdude(1350) 2 years, 8 months ago

The Builder Pattern falls under the category of the Creational Patterns as it controls the instantiation of a class. This pattern is suitable in scenarios in which an object is made up several parts and the constituent parts need to be created in the same order using an algorithm. A real world example is in making a pizza. A pizza is made up of several parts (the crust, cheese and the toppings) that are constructed using an algorithm (bake the crust, add cheese and add the toppings). read more...

add a comment |category: |Views: 410

tags: another

Writing Great Unit Tests: Best and Worst Practises(blog.codeville.net)

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

A suite of good unit tests is immensely valuable: it documents your design, and makes it easier to refactor and expand your code while retaining a clear overview of each component’s behaviour. However, a suite of *bad* unit tests is immensely painful: it doesn’t prove anything clearly, and can severely inhibit your ability to refactor or alter your code in any way. How can you be sure to write unit tests that contribute positively to your project and don't end up being a liability? read more...

add a comment |category: |Views: 651

tags: another

Pay Attention to the Foreach Implicit Casting (dev102.com)

submitted by shaharyrshaharyr(4325) 2 years, 9 months ago

In order to reduce an explicit conversion effort using the foreach statement, the C# developers decided to do an automatic conversion for us. We must pay attention to it... read more...

add a comment |category: |Views: 408

tags: another

What is Unit Testing?(codethinked.com)

submitted by markheathmarkheath(1485) 2 years, 10 months ago

good introductory article explaining what unit tests are (and are not) and why you should use them read more...

add a comment |category: |Views: 344

tags: another