User bovium - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T05:26:36Zhttp://stackoverflow.com/feeds/user/11135http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/271398/what-are-your-favorite-extension-methods-for-c-net-codeplex-com-extensionover122What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)bovium2008-11-07T06:47:21Z2009-11-28T08:42:36Z
<p>Let's make a list of answers where you post your excellent and favorite <a href="http://en.wikipedia.org/wiki/Extension%5Fmethod" rel="nofollow">extension methods</a>. </p>
<p>The requirement is that the full code must be posted and a example and an explanation on how to use it.</p>
<p>Based on the high interest in this topic I have setup an Open Source Project called extensionoverflow on <a href="http://www.codeplex.com/extensionoverflow" rel="nofollow"><strong>Codeplex</strong></a>. </p>
<p><strong>Please mark your answers with an acceptance to put the code in the Codeplex project.</strong></p>
<p><strong>Please post the full sourcecode and not a link.</strong></p>
<p><strong>Codeplex News:</strong></p>
<p>11.11.2008 <strong>XmlSerialize / XmlDeserialize</strong> is now <a href="http://www.codeplex.com/extensionoverflow/SourceControl/FileView.aspx?itemId=284374&changeSetId=17001" rel="nofollow">Implemented</a> and <a href="http://www.codeplex.com/extensionoverflow/SourceControl/FileView.aspx?itemId=288847&changeSetId=17001" rel="nofollow">Unit Tested</a>.</p>
<p>11.11.2008 There is still room for more developers. ;-) <strong>Join NOW!</strong></p>
<p>11.11.2008 Third contributer joined <a href="http://www.codeplex.com/extensionoverflow" rel="nofollow">ExtensionOverflow</a>, welcome to <a href="http://www.codeplex.com/site/users/view/BKristensen" rel="nofollow">BKristensen</a></p>
<p>11.11.2008 <strong>FormatWith</strong> is now <a href="http://www.codeplex.com/extensionoverflow/SourceControl/FileView.aspx?itemId=284374&changeSetId=16839" rel="nofollow">Implemented</a> and <a href="http://www.codeplex.com/extensionoverflow/SourceControl/FileView.aspx?itemId=288847&changeSetId=16839" rel="nofollow">Unit Tested</a>.</p>
<p>09.11.2008 Second contributer joined <a href="http://www.codeplex.com/extensionoverflow" rel="nofollow">ExtensionOverflow</a>. welcome to <a href="http://stackoverflow.com/users/3055/chakrit">chakrit</a>.</p>
<p>09.11.2008 We need more developers. ;-)</p>
<p>09.11.2008 <strong>ThrowIfArgumentIsNull</strong> in now <a href="http://www.codeplex.com/extensionoverflow/SourceControl/FileView.aspx?itemId=278942&changeSetId=16468" rel="nofollow">Implemented</a> and <a href="http://www.codeplex.com/extensionoverflow/SourceControl/FileView.aspx?itemId=284112&changeSetId=16468" rel="nofollow">Unit Tested</a> on Codeplex.</p>
http://stackoverflow.com/questions/177400/books-on-domain-specific-languages-dsl-for-c-net2Books on Domain Specific Languages (DSL) for C# .netbovium2008-10-07T06:38:30Z2009-09-15T14:03:03Z
<p>I'm looking for good literature(web, podcasts or books) on DSL's in .net and C#.</p>
http://stackoverflow.com/questions/267921/regular-expressions-in-mssql-servers1Regular Expressions in MSSQL servers?bovium2008-11-06T08:15:03Z2009-04-04T12:27:48Z
<p>Is it possible to make efficient queries that use the complete regular expression feature set.</p>
<p>If not Microsoft really should consider that feature.</p>
http://stackoverflow.com/questions/180081/what-is-the-best-3rd-party-gui-framework-for-application-development-in-c1What is the best 3rd party GUI framework for application development in C#?bovium2008-10-07T19:51:22Z2009-03-28T05:13:50Z
<p>Examples could be Infragistics or DevExpress.</p>
<p>But I'm also looking for your opinions on other frameworks. It could even be WPF if that is your favorite.</p>
http://stackoverflow.com/questions/249567/algorithm-to-avoid-sql-injection-on-mssql-server-from-c-code8Algorithm to avoid SQL injection on MSSQL Server from C# code?bovium2008-10-30T08:25:25Z2009-01-20T09:50:53Z
<p>What would be the best way to avoid SQL injection on the C#.net platform.</p>
<p>Please post an C# implementation if you have any.</p>
http://stackoverflow.com/questions/271710/collectiont-versus-listt-what-should-you-use-on-your-interfaces8Collection<T> versus List<T> what should you use on your interfaces?bovium2008-11-07T10:28:08Z2009-01-08T22:56:22Z
<p>The code looks like below:</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Test
{
public interface IMyClass
{
List<IMyClass> GetList();
}
public class MyClass : IMyClass
{
public List<IMyClass> GetList()
{
return new List<IMyClass>();
}
}
}
</code></pre>
<p>When I Run Code Analysis i get the following recommendation.</p>
<pre><code>Warning 3 CA1002 : Microsoft.Design : Change 'List<IMyClass>' in 'IMyClass.GetList()' to use Collection<T>, ReadOnlyCollection<T> or KeyedCollection<K,V>
</code></pre>
<p>How should I fix this and what is good practice here?</p>
http://stackoverflow.com/questions/362232/is-guid-the-best-identity-datatype-for-databases8Is Guid the best identity datatype for Databases?bovium2008-12-12T08:49:36Z2008-12-19T16:27:45Z
<p>It is connected to BI and merging of data from different data sources and would make that process more smooth.</p>
<p>And is there an optimal migration strategy from a database without Guids to a version with Guids without information losses?</p>
http://stackoverflow.com/questions/177628/domain-specific-languages-dsl-and-domain-driven-design-ddd3Domain Specific Languages (DSL) and Domain Driven Design (DDD)bovium2008-10-07T08:37:33Z2008-12-07T01:16:34Z
<p>What is the differences and similarities between Domain Specific Languages (DSL) and Domain Driven Design (DDD)?</p>
http://stackoverflow.com/questions/315402/server-databasesdatabasename-drop-fails-in-mstest2server.Databases[databaseName].Drop(); fails in MSTestbovium2008-11-24T20:44:18Z2008-11-26T01:48:28Z
<p>The following exception is thrown:</p>
<p>Error Message: Microsoft.SqlServer.Management.Smo.FailedOperationException: Drop failed for Database '4d982a46-58cb-4ddb-8999-28bd5bb900c7'. ---> Microsoft.SqlServer.Management.Common.ExecutionFailureException: An exception occurred while executing a Transact-SQL statement or batch. ---> System.Data.SqlClient.SqlException: Cannot drop database "4d982a46-58cb-4ddb-8999-28bd5bb900c7" because it is currently in use.</p>
<p>Any idea what caused this?</p>
<p>Is it possible to call a SMO function to finalize any running Transact-SQL statements?</p>
http://stackoverflow.com/questions/277581/do-you-suffix-your-implementation-classes-with-impl-4Do you suffix your implementation classes with Impl? [closed]bovium2008-11-10T10:44:57Z2008-11-10T11:57:39Z
<p>Which of the Person implementations below is correct. I find various implementations of both. </p>
<p>Do you put "I" on your interfaces? </p>
<p>Do you put "Impl" on your implementaions?</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Test
{
public interface IPerson
{
string Name { get; set; }
}
public class PersonImpl : IPerson
{
public string Name { get; set; }
}
public class Person: IPerson
{
public string Name { get; set; }
}
}
</code></pre>
<p>Lets find the right answer to this important topic.</p>
http://stackoverflow.com/questions/271398/what-are-your-favorite-extension-methods-for-c-net-codeplex-com-extensionover/271409#27140910Answer by bovium for What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)bovium2008-11-07T06:59:24Z2008-11-08T22:07:36Z<p>The ThrowIfArgumentIsNull is a nice way to do that null check we all should do.</p>
<pre><code>public static class Extensions
{
public static void ThrowIfArgumentIsNull<T>(this T obj, string parameterName) where T : class
{
if (obj == null) throw new ArgumentNullException(parameterName + " not allowed to be null");
}
}
</code></pre>
<p>Below is the way to use it and it works on all classes in your namespace or wherever you use the namespace its within.</p>
<pre><code>internal class Test
{
public Test(string input1)
{
input1.ThrowIfArgumentIsNull("input1");
}
}
</code></pre>
<p><strong>It's ok to use this code on the <a href="http://www.codeplex.com/extensionmethod" rel="nofollow">CodePlex</a> project.</strong> </p>
http://stackoverflow.com/questions/273507/what-copyright-license-to-select4What copyright license to select?bovium2008-11-07T20:17:14Z2008-11-07T21:06:38Z
<p>What is copyright licence type to select in order to make the code free for the public in all possible ways.</p>
<p>Is "The MIT License" the best option?</p>
http://stackoverflow.com/questions/272989/which-memcached-client-library-should-i-use-for-net/273049#2730490Answer by bovium for Which Memcached client library should I use for .NET ?bovium2008-11-07T18:17:11Z2008-11-07T18:17:11Z<p>Take a look at <a href="http://msdn.microsoft.com/en-us/data/cc655792.aspx" rel="nofollow">Velocity</a>. Its Microsofts new alternative, its not stable yet but looks promising.</p>
http://stackoverflow.com/questions/267067/would-you-go-back-to-vb-net-after-getting-c/267916#2679162Answer by bovium for Would you go back to VB.NET after getting C#?bovium2008-11-06T08:10:56Z2008-11-06T08:10:56Z<p>They are the same to me. The important factor is the .net runtime and the fact that they both evolve to something better and more productive.</p>
<p>Furthermore I live with the philosophy to learn a new programming language every year. So don't be religious.</p>
http://stackoverflow.com/questions/266761/accessing-dynamically-created-stored-procedure-from-linq/266810#2668100Answer by bovium for Accessing dynamically created stored procedure from LINQbovium2008-11-05T21:40:56Z2008-11-05T21:40:56Z<p>You can create your linq object for access after your returned dataset.</p>
<p>But would that really be of any use. Linq are usefull for typesafe calls and not dynamic results. You would not know what to look for compile time.</p>
http://stackoverflow.com/questions/266776/mock-file-methods-in-net-like-file-copy1-txt-2-txt/266795#2667951Answer by bovium for Mock File methods in .NET (like File.Copy("1.txt", "2.txt"))bovium2008-11-05T21:34:33Z2008-11-05T21:34:33Z<p>You can use a mock framework for this and it will create a fake copy of the File object and you can inject the file in the system under test.</p>
<p>I will recommend Rhino Mock.</p>
http://stackoverflow.com/questions/265921/sql-design-around-lack-of-cross-database-foreign-key-references/266754#2667540Answer by bovium for SQL design around lack of cross-database foreign key referencesbovium2008-11-05T21:23:30Z2008-11-05T21:23:30Z<p>You should implement a Service Oriented Architecture. Where the different services in the system are running with their on database schema.
Then let you applications run independently from any databases but let them run against the services.</p>
http://stackoverflow.com/questions/246470/is-spring-net-the-best-framework-for-aspect-oriented-programmingaop2Is SPRING.Net the best framework for Aspect Oriented Programming(AOP)?bovium2008-10-29T11:31:02Z2008-11-04T17:35:30Z
<p>Please give me the advantages and disadvantages of using the particular framework.</p>
<p>Can give me examples of successes where you have used AOP in you .net applications?</p>
http://stackoverflow.com/questions/246470/is-spring-net-the-best-framework-for-aspect-oriented-programmingaop/261221#2612211Answer by bovium for Is SPRING.Net the best framework for Aspect Oriented Programming(AOP)?bovium2008-11-04T08:11:37Z2008-11-04T08:11:37Z<p>We can use Postsharp for AOP.</p>
http://stackoverflow.com/questions/246470/is-spring-net-the-best-framework-for-aspect-oriented-programmingaop/261220#2612200Answer by bovium for Is SPRING.Net the best framework for Aspect Oriented Programming(AOP)?bovium2008-11-04T08:11:01Z2008-11-04T08:11:01Z<p>We can use Unity 1.2 for AOP.</p>
http://stackoverflow.com/questions/261151/how-to-create-an-aspect-checking-for-null-references-on-all-methods-in-a-class-in0How to create an aspect checking for null references on all methods in a class in postsharpbovium2008-11-04T07:26:56Z2008-11-04T08:04:25Z
<p>How to create an aspect checking for null references on all methods in a class in postsharp.</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace test
{
[MethodParameterNullCheck]
internal class Class
{
public Class()
{
}
public void MethodA(int i, ClassA a, ClassB b)
{
//Some business logic
}
}
}
</code></pre>
<p>The aspect [MethodParameterNullCheck] should then unfold to the following code:</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace test
{
[MethodParameterNullCheck]
internal class Class
{
public Class()
{
}
public void MethodA(int i, ClassA a, ClassB b)
{
if (a == null) throw new ArgumentNullException("Class->MethodA: Argument a of ClassA is not allowed to be null.");
if (b == null) throw new ArgumentNullException("Class->MethodA: Argument b of ClassB is not allowed to be null.");
// Some Business Logic
}
}
}
</code></pre>
<p>I will appreciate if you can give me a sample implementation on this to get me startet on AOP with postsharp.</p>
http://stackoverflow.com/questions/249681/best-way-to-avoid-sql-injection-on-mssql-server-from-c-code-using-linq2Best way to avoid SQL injection on MSSQL Server from C# code using Linq?bovium2008-10-30T09:43:37Z2008-10-30T12:17:56Z
<p>What is the best way to avoid SQL injection on MSSQL Server from C# code using Linq?</p>
<p>Should you use a function to strip of security issues or is it handled by the framework?</p>
http://stackoverflow.com/questions/249631/how-to-get-started-on-aspect-oriented-programming-on-the-net-platform2How to get started on Aspect Oriented Programming on the .Net platform?bovium2008-10-30T09:10:10Z2008-10-30T09:43:38Z
<p>Please give me some insight on how to get the best start on applying Aspect Oriented Programming to my C#.net applications?</p>
http://stackoverflow.com/questions/186007/what-is-the-best-language-construction-in-c0What is the best language construction in C#? [closed]bovium2008-10-09T05:28:54Z2008-10-21T12:53:29Z
<p>What is the best language construction you have worked with in C#.</p>
<p>One of my favorites is Generics.</p>
http://stackoverflow.com/questions/199909/what-are-the-better-ways-to-protect-commercial-net-software-from-being-casually/200153#2001530Answer by bovium for What are the better ways to protect commercial .NET software from being casually copied?bovium2008-10-14T06:11:41Z2008-10-14T06:11:41Z<p>I searched a bit for this and it seems like you have a bunch of commercial tools for this. like: <a href="http://www.eziriz.com/?gclid=CJvC19KGppYCFQuHlAod0E3k6g" rel="nofollow">eziriz</a></p>
<p>I would like to know if there is any good open source solutions for this?</p>
http://stackoverflow.com/questions/186653/c-indexof-the-nth-occurrence-of-a-string/186776#1867761Answer by bovium for C# - indexOf the nth occurrence of a string?bovium2008-10-09T11:09:59Z2008-10-09T11:09:59Z<p>I would use a regular expressions for that then you have to optimal way of matching the string within the string.</p>
<p>This in one of the beautiful DSLs we all should use when possible.</p>
<p><a href="http://www.regular-expressions.info/dotnet.html" rel="nofollow" title="Link">An example</a> in VB.net the code is almost the same in C#.</p>
http://stackoverflow.com/questions/182683/linqtosql-referenced-entities-will-throw-nullreferenceexception/182944#1829441Answer by bovium for LinqToSql referenced entities will throw NullReferenceExceptionbovium2008-10-08T14:04:22Z2008-10-08T14:04:22Z<p>In order to find and resolve an issue like that it would be helpful with a stacktrace and perhaps a profiling on the database.</p>
<p>The problem could perhaps be a security issue. Have you tried to log in with the same credentials in Management Studio as your application uses and do a select on the table.</p>
<p>That would at least give you an idea about security or a linq issue.</p>
http://stackoverflow.com/questions/182497/what-is-the-best-starting-point-on-the-entity-framework-from-ms0What is the best starting point on the Entity Framework from MS?bovium2008-10-08T12:31:37Z2008-10-08T12:45:35Z
<p>Please give me the direction of the best guidance on the Entity Framework.</p>
http://stackoverflow.com/questions/99686/why-do-c-and-vb-have-generics-what-benefit-do-they-provide-generics-ftw/99888#998881Answer by bovium for Why do C# and VB have Generics? What benefit do they provide? Generics, FTWbovium2008-09-19T05:31:53Z2008-09-19T05:31:53Z<p>Generics are build on the concept of templates in c++ if you are familiar with them.</p>
<p>Its a way to implement an algorithm or data structure but delaying the actual type it is used on.</p>
<p>List can then be assigned with any type of your choice int, string and even custom types the type is assigned on construction of the list. But you will be able to use the list operations add remove etc.</p>
<p>You can really save a lot of coding effort by getting used to generics. And you don't have to box and unbox between types.</p>
<p>Java have generics as well. They are called wildcards.</p>
http://stackoverflow.com/questions/61826/what-should-i-learn-next-after-vb-and-c/69723#697230Answer by bovium for What should I learn next after VB and C#bovium2008-09-16T06:09:19Z2008-09-16T06:09:19Z<p>You should focus on learning to make better designs using the skills you already have in vb and C#. </p>
<p>If you don't have experience using databases I would spend some time on that.</p>
<p>To make better design I would look into design patterns. Dofactory have some nice example implementations. Link: <a href="http://www.dofactory.com/Patterns/Patterns.aspx" rel="nofollow">http://www.dofactory.com/Patterns/Patterns.aspx</a></p>
<p>Another place to start is to read a book by Jimmy Nilsson called "Applying Domain-Driven Design and Patterns: With Examples in C# and .NET". This is also referred to as DDD.
Link: <a href="http://rads.stackoverflow.com/amzn/click/0321268202" rel="nofollow">http://www.amazon.com/exec/obidos/ASIN/0321268202</a>.</p>
http://stackoverflow.com/questions/271398/what-are-your-favorite-extension-methods-for-c-net-codeplex-com-extensionoverComment by bovium on What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)bovium2009-01-30T10:15:04Z2009-01-30T10:15:04ZI'm still here yes!!! ;-) Just not as active as I would like to be. Thats the problem with a day job. http://stackoverflow.com/questions/315402/server-databasesdatabasename-drop-fails-in-mstest/315417#315417Comment by bovium on server.Databases[databaseName].Drop(); fails in MSTestbovium2008-11-24T21:02:58Z2008-11-24T21:02:58ZThat was exactly the case. Thanks a lot.http://stackoverflow.com/questions/271398/what-are-your-favorite-extension-methods-for-c-net-codeplex-com-extensionover/286753#286753Comment by bovium on What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)bovium2008-11-13T18:36:36Z2008-11-13T18:36:36ZCan we use the code in extensionoverflow on CodePlex?http://stackoverflow.com/questions/271398/what-are-your-favorite-extension-methods-for-c-net-codeplex-com-extensionoverComment by bovium on What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)bovium2008-11-11T22:43:53Z2008-11-11T22:43:53ZErik unfortunately everything is started now on codeplex. Please join anyway.http://stackoverflow.com/questions/271398/what-are-your-favorite-extension-methods-for-c-net-codeplex-com-extensionover/279789#279789Comment by bovium on What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)bovium2008-11-11T09:07:56Z2008-11-11T09:07:56ZThe code is not complete.
http://stackoverflow.com/questions/277581/do-you-suffix-your-implementation-classes-with-implComment by bovium on Do you suffix your implementation classes with Impl?bovium2008-11-10T20:30:19Z2008-11-10T20:30:19Z@David Arno I do not agree that this is a subjective thing. I would say that based on the naming conventions and guidelines below and the opinions of the people it is an objective thing.http://stackoverflow.com/questions/277581/do-you-suffix-your-implementation-classes-with-implComment by bovium on Do you suffix your implementation classes with Impl?bovium2008-11-10T20:28:02Z2008-11-10T20:28:02Z@Pop Catalin I can se your point on that. I will not do that in the future. My poll answers are deleted. Everybody please forgive me for doing that.http://stackoverflow.com/questions/277581/do-you-suffix-your-implementation-classes-with-implComment by bovium on Do you suffix your implementation classes with Impl?bovium2008-11-10T12:11:00Z2008-11-10T12:11:00ZAnd after all the idea with this site is to improve peoples skills and to get some common best practices.http://stackoverflow.com/questions/277581/do-you-suffix-your-implementation-classes-with-implComment by bovium on Do you suffix your implementation classes with Impl?bovium2008-11-10T12:09:43Z2008-11-10T12:09:43ZBased on the attitude of different programmers this question is still good. And I agree that the Impl usage is wrong and I will stop using it that way.http://stackoverflow.com/questions/277581/do-you-suffix-your-implementation-classes-with-implComment by bovium on Do you suffix your implementation classes with Impl?bovium2008-11-10T11:39:26Z2008-11-10T11:39:26ZSad that you think that. I really seek the best practice behind this. I think it is sad that someone down voted my answers. Thats not in the spirit of stack overflow. At least I wont use impl on my implementations anymore.http://stackoverflow.com/questions/271398/what-are-your-favorite-extension-methods-for-c-net-codeplex-com-extensionoverComment by bovium on What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)bovium2008-11-09T17:08:05Z2008-11-09T17:08:05Z@chakrit Point taken. The name of the project is now extension overflowhttp://stackoverflow.com/questions/271398/what-are-your-favorite-extension-methods-for-c-net-codeplex-com-extensionover/271656#271656Comment by bovium on What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)bovium2008-11-08T21:58:30Z2008-11-08T21:58:30Z@Pure.Krome Can I use the code in the codeplex project. And do you not want to become a contributer to that project?http://stackoverflow.com/questions/271398/what-are-your-favorite-extension-methods-for-c-net-codeplex-com-extensionover/271437#271437Comment by bovium on What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)bovium2008-11-08T21:47:58Z2008-11-08T21:47:58Z@Jon Skeet. Its put under the MIT license free of use for everybody. Commercially or open source. Why not join forces and make an extension methods library for the public.http://stackoverflow.com/questions/271398/what-are-your-favorite-extension-methods-for-c-net-codeplex-com-extensionover/273665#273665Comment by bovium on What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)bovium2008-11-08T18:45:28Z2008-11-08T18:45:28ZCan we use the code on the codeplex project?http://stackoverflow.com/questions/271398/what-are-your-favorite-extension-methods-for-c-net-codeplex-com-extensionover/274649#274649Comment by bovium on What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)bovium2008-11-08T18:43:14Z2008-11-08T18:43:14ZCan we use the code in the codeplex project?