Stories recently tagged with 'comparison'

Validation Techniques in ASP.NET MVC(asliborsky.blogspot.com)

submitted by ASliborskyASliborsky(95) 2 years, 5 months ago

Article described general validation techniques that could be used in ASP.NET MVC. It is based on real project experience and explains the peculiarities and drawback of some approaches to help developers and architects to choose the best one for them. read more...

add a comment |category: |Views: 31

tags: another

Advanced validation techniques in ASP.NET MVC(asliborsky.blogspot.com)

submitted by ASliborskyASliborsky(95) 2 years, 5 months ago

Article fully compares different validation techniques which could be used in ASP.NET MVC trying to help in choosing the best one for some projects. It's a first article from the series about validation written by AST.NET MVC specialists from Qulix Systems. read more...

add a comment |category: |Views: 62

tags: another

ASP.NET MVC WebForms vs Spark View Engines. Part 2. Markup (asliborsky.blogspot.com)

submitted by ASliborskyASliborsky(95) 2 years, 5 months ago

It's second article from the series of the "Web Foms vs Spark View Engine". It shows differences between pages on the real project. read more...

add a comment |category: |Views: 24

tags: another

Implementing Object Comparison(nuclex.org)

submitted by CygonCygon(134) 2 years, 5 months ago

Comparison operators are often implemented poorly in .NET, in the sense that they contain duplicate code or perform certain checks, like a null reference test, multiple times. This article demonstrates a pattern that you can use to implement object comparison in a way that causes zero redundant code and achieves perfect efficiency (no comparison, not even a null check, is performed twice). It also provides a solution for comparison in inherited classes and integrates well with the == and != operators - all again without any redundant code and achieving optimal efficiency. read more...

add a comment |category: |Views: 10

tags: another

ASP.NET WebForms vs Spark View Engine. Part 1(asliborsky.blogspot.com)

submitted by ASliborskyASliborsky(95) 2 years, 5 months ago

First part from the series of articles that fully compare ASP.NET MVC engines - standard Web Forms engine and Spark View Engine: by functionality, by code and by performance. read more...

add a comment |category: |Views: 133

tags: another

Comparing ORMs - LINQ-to-X, LightSpeed, EntitySpaces and OpenAccess(mindscape.co.nz)

submitted by traskjdtraskjd(3229) 3 years, 3 months ago

How do LINQ-to-SQL, LINQ-to-Entities, LightSpeed, EntitySpaces and OpenAccess stand up when compared to each other? This post discusses what to consider when selecting your O/R Mapper and links to a feature matrix comparing the features provided by each of these products. read more...

12 comments |category: |Views: 1076

tags: another

Browser Beta Battle IE8 vs Firefox 3.0b5(frickinsweet.com)

submitted by dengar007dengar007(3084) 4 years, 1 month ago

A quick comparison of page load times on IE8 vs Firefox 3.0b5 read more...

7 comments |category: |Views: 8

tags: another

How to: Optimize the strings’ comparison(dotnetfacts.blogspot.com)

submitted by eugenciutaeugenciuta(715) 4 years, 1 month ago

Due to my web research I found some useful tips about how to compare two strings making full use of performance in .NET Framework. read more...

add a comment |category: |Views: 10

tags: another

Java (J2SE 5.0) Vs VB.NET Vs C# Comparison(weblogs.asp.net)

submitted by suresh_mvpsuresh_mvp(20) 4 years, 10 months ago

Java (J2SE 5.0) Vs VB.NET Vs C# Comparison read more...

add a comment |category: |Views: 63

tags: another

J2EE vs ASP.NET vs PHP(plentyofcode.com)

submitted by bayarsaikhanbayarsaikhan(830) 4 years, 10 months ago

In this article, I wanted to compare the web application development platforms which I have been using for recent years. My comparison has no aim to make one platform better than others, or vice versa. These are all my own thoughts and what I have experienced during the development of web applications using the three platforms. It is open to you to express your opinions and stands as a comment. read more...

add a comment |category: |Views: 208

tags: another

How to sort a generic List<T>(dotnetslackers.com)

submitted by simonebsimoneb(5450) 4 years, 11 months ago

Sorting a generic List<T> using anonymous methods and the Comparison<T> delegate. read more...

1 comment |category: |Views: 97

tags: another

Do Infragistics Controls keep what they promise?(peitor.blogspot.com)

submitted by peitorpeitor(55) 5 years, 3 months ago

Comparison of the controls from: Infragistics, Janus Controls, and devExpress... Comparison done on performance of the grid (main used control) read more...

add a comment |category: |Views: 84

tags: another

Conditional WHERE clauses in T-SQL using comparison operators(dotnetzone.gr)

submitted by sotirisfsotirisf(315) 5 years, 4 months ago

Ever had a query where you wished you could be able to specify the operator (equal, not equal, greater than, etc.) for each column contained in your WHERE clause, without having to use ugly string concatenations and the infamous EXEC keyword? Here we'll see an example of how this can be achieved with the use of a plain SQL query together with some CASE statements. read more...

add a comment |category: |Views: 668

tags: another