2
votes
8answers
81 views
What do you call the extra third table involved in a many-to-many relationship? [closed]
Possible Duplicates:
What should I name a table that maps two tables together?
Is there an official name for the many-to-many relationship table in a database schema?
I don't mean what you …
10
votes
20answers
396 views
What should I name a table that maps two tables together?
Let's say I have two tables:
Table: Color
Columns: Id, ColorName, ColorCode
Table: Shape
Columns: Id, ShapeName, VertexList
What should I call the table that maps color to shape?
Table: ???
…
1
vote
1answer
45 views
How do I get a list of event handlers with nonstandard names in my code?
I'm in the middle of performing a large refactoring which will involve renaming a lot of events. This will leave our code with a lot of code like this:
thing.NewEventName += thing_OldEventName;
…
1
vote
5answers
57 views
How to mitigate class declaration being far from its owner namespace declaration in a file?
So, I've seen how useful namespaces can be to organize declarations into their respective groups, but now comes an issue with this.
The difference between making a library in C and a library in C++ …
1
vote
2answers
38 views
Is putting class name in member routines redundant?
Say you have a class Block...
class Block {
and it has a function that allows you to show the block on screen. Would you call it...
ShowBlock( ... )
or just
Show( ... )
This has been irking …
1
vote
4answers
65 views
Is there a well-established naming convention for PHP namespaces?
So far, I've seen many different naming conventions used for PHP namespaces. Some people use PascalCase\Just\Like\For\Classes, some use underscored\lower_case\names, some even use the Java convention …
0
votes
6answers
155 views
When, if ever, should the name of a property contain the name of the class?
public class Fruit
{
// choose one
public int Id { get; set; }
public int FruitId get; set; } // redundant or usefully more descriptive?
// choose one
public string Name { get; …
3
votes
8answers
180 views
Whats the best way to name id & classes in CSS and HTML
When naming classes and ids for CSS what is the best method to use. In this case I need there to be some kind of naming convention so that other people can pick up rules and understand how to name …
1
vote
3answers
105 views
C++ header file convention
I am working on a small game using C++, and I used Eclipse CDT's class generator. It created a .h file with the class definitions and a .cpp file that included body-less methods for said class.
So …
0
votes
1answer
72 views
(Conventions) C# Class names and namespace [closed]
I realise that there are related post on this topic http://stackoverflow.com/questions/1760449/conventions-c-class-names,however I have a quite long discussion with one of my co-workers today about …
1
vote
3answers
191 views
Does this match any known design pattern?
I'm working on a simple, internal ASP.NET app for a small company. I've designed the data access layer so it's database-agnostic.
I have the following:
IDataHelper - An interface requiring
methods …
3
votes
4answers
109 views
Recommendations for naming C# classes/methods intended to replace existing APIs.
Long explanation aside, I have a situation where I need to basically re-implement a .NET framework class in order to extend the behavior in a manner that is not compatible with an inheritance or …
1
vote
3answers
52 views
Database column naming question
Let's suppose there is a table called AIRPORT and I have to choose between two naming conventions:
to name attributes like AP_CODE, AP_NAME and so on
or to name them just like CODE, NAME
The question …
4
votes
10answers
110 views
Prefix “Is” in Method Name for Verification Methods
I've been reading Code Complete lately, based off of many references here and also by a friend, and had a naming question for the community. Should the prefix "Is" be used on boolean methods that …
0
votes
4answers
69 views
Should a class have the same name as the namespace?
I'm designing a namespace to hold a set of classes that will handle user related tasks for a several different applications. (Log-in, authenticate etc)
The problem is the namespace will be called …
