Search Results

1
vote

OOP Naming: TCP vs.Tcp prefix

Generally, when it's a 2-character prefix, leave it uppercase (IPAddress) and when it's 3 characters or more, Pascal-case the prefix (TcpXxxx). There are a few exceptions to this rule (e.g. …
11
votes

Which LINQ syntax do you prefer? Fluent or Query Expression

Neither is better: they serve different needs. Query syntax comes into its own when you want to leverage multiple range variables. This happens in three situations: W …
-1
votes

Doesn’t Linq to SQL miss the point? Aren’t ORM-mappers (SubSonic, etc.) sub-optimal solutions?

Most people have missed an essential point: in most cases, you are significantly more productive when querying in LINQ than in SQL. I've …