0
votes
Unit of Work Pattern in .Net
Actually. In a WinForms context, you might want to look at Linq 2 SQL.
Basically, when the user starts editing data, you assign that "edit session" a DataContext object.
All data operations a …
6
votes
Visual Studio Optimizations
Increasing the speed of Visual Studio?
Why not instead increase you efficiency with the tool instead?
I use ReSharper at all times when programming in C#, and though it will slow down V …
-4
votes
2
votes
Hidden Features of C#?
I have often come across the need to have a Generic parameter-object persisted into the viewstate in a base class.
public abstract class BaseListControl<ListType,KeyType,Paramete …
6
votes
Your experience with .Net based CMS
If you are code-savvy, and not afraid to pay up, I would recommend EPiServer
My company uses it for a lot of customers, and it's a …
0
votes
Your experience with .Net based CMS
EPiServer should be in the range of about $10k-$15k. (In Norway at least)
So, it is not cheap, but you will save that money in developer time.
…
1
vote
Replacement for for… if array iteration
In C# you can apply selective processing on anything that lives inside an IEnumerable like this:
intArray.Where(i => i > 3).ConvertAll();
DoStuff(intArray.Where(i => i 3) …
0
votes
Reading Excel files from C#
I know that people have been making an Excel "extension" for this purpose.
You more or less make a button in Excel that says "Export to Program X", and then export and send off the data in a …
1
vote
Anyone know a quick way to get to custom attributes on an enum value?
I generally find reflection to be quite speedy as long as you don't dynamically invoke methods.
Since you are just reading the Attributes of an enum, your approach should work just fine witho …
0
votes
Best way to use a property to reference a Key-Value pair in a dictionary
When you only use a magic string in one context, like you do, I think it's alright.
But if you ever need to use the key in another part of the class, go const.
…
7
votes
Can you use reflection to find the name of the currently executing method?
Try this inside the Main method in an empty console program:
MethodBase method = MethodBase.GetCurrentMethod();
Console.WriteLine(method.Name);
Console Output: …
0
votes
What are you currently using for data access?
I usually create a DataTier with LiNQ.
It consist of repositories that implement composite interfaces, so I have total flexibility on how to use them.
IPersonRepository : IR …
1
vote
.NET Console Application Tab Completion
Do a Console.ReadKey().
If you get a Tab, look at what you have in the command buffer, and loop through your available commands. If someCommand.Name.BeginsWith(currentinput), …
7
votes
Where should interfaces “physically live”?
Put your domain objects and interfaces in a seperate "domain" assembly.
This assembly should never reference anything but the core .net assemblies.
This way you get a clean seperation …
1
vote
How can I invoke (web) Button.Click in c#?
You will need an event to act as a proxy, but you are pretty much better off just refactoring your code.
private EventHandler ButtonClick;
protected override void CreateChi …
