Search Results

0
votes

One database or many?

I think you have to go with the most realistic scenario and not necessarily what a customer "may" want to do in the future. If you are going to market that feature (i.e. seeing all your entities in …
0
votes

Use of 3rd party libraries/components in production

Yes. Unless there's a feature we really need in a beta version. There's no point using a beta version in dev if you aren't certain you'll use it in production. That just seems like a …
0
votes

OK-Cancel or Cancel-OK?

I think OK-Cancel. Because you want the affirmative answer first? "Yes-No" not "No-Yes", right? …
0
votes

Should I avoid Alternative Control Syntax?

Except for when it's used in the most basic scenarios, I'll say avoid it. If 2 constructs are compiled to the same exact MSIL, why use the one that's difficult to understand? …
0
votes

How can I show that a method will never return null (Design by contract) in C#

Document it and provide the source code. …
3
votes

Who cares… as long as the result is ok?

When you start worrying about esoteric stuff that have no effect on the bottomline, I think that's going too far. Discussions like whether to use the ternary operator or write explicit if statement …
0
votes

Recommended location for document storage - in database or elsewhere?

The only advantage I can see to storing documents in the database is the ease of moving those documents to another environment. Apart from that, I wouldn't do it for all the reasons already mention …
0
votes

Where do you keep your code?

c:\[projectname] …
0
votes

Which comes first - The Interface or the Class

Well if you really go through the design phase, you'll have created the designs for the interface and class before coding either. Right? …