n8wrl

4,225
Reputation
309 views

Registered User

Name n8wrl
Member for 1 year
Seen 43 mins ago
Website
Location South Carolina
Age 45
Developer for 20+ years, working in automotive accessories cataloging now. Hobbies are ham radio and fixing things my wife's horses broke.
21h
awarded  Mortarboard
Dec
2
awarded  Nice Answer
Nov
25
comment C#: Generic interfaces and understanding “type parameter declaration must be an identifier not a type”
Because if you do then GetByID has to be a big switch statement to call the right one based on typeof(myClass).
Nov
25
comment C#: Generic interfaces and understanding “type parameter declaration must be an identifier not a type”
So you have a property of Data.myEntities for each T you might have an interface for?
Nov
25
answered C#: Generic interfaces and understanding “type parameter declaration must be an identifier not a type”
Nov
25
answered Safely iterate an array that can be changed in another thread
Nov
15
awarded  Yearling
Nov
10
comment SQL string not line breaking in gridview
I would use a template field and lay out accordingly. aspnet101.com/aspnet101/tutorials.aspx?id=58/…
Nov
10
comment SQL string not line breaking in gridview
FWIW you shouldn't do your HTML formatting in SQL. Return two data fields and format your grid accordingly.
Nov
10
comment SQL string not line breaking in gridview
This is exaclty it - unless you flag the column as 'nowrap' HTML will wrap w/o the linebreak
Oct
26
comment When to Create, When to Modify a Table?
Can you help with some specific scenarios? That's a pretty broad question: "when should I create a new spreadsheet vs. modify an existing one - I use Excel."
Oct
14
comment What is causing “Subquery returned more than 1 value…” error?
It's also posible someone ELSE could be doing an insert that SHOULD have the triggers while you've disabled them.
Oct
13
answered Best Practice for relationships shared among multiple tables
Oct
13
answered How do I maintain state across multiple web servers?
Oct
9
comment Is it possible to coalesce string and DBNull in C#?
D'oh! That'll teach me to post-before-test!
Oct
9
answered Is it possible to coalesce string and DBNull in C#?
Oct
8
comment Autofac, ASP.NET and Microsoft.Practices.ServiceLocation
This is very cool Peter but I was hoping to be able to reuse my '.Core' libraries in other contexts, perhaps not even web-based. Still, I think this is a great answer because it helps ground me to avoid too many abstractions. Thanks!
Oct
1
comment Why does a “&&=” Operator not exist?
Yeah but it makes the short-circuiting obvious
Oct
1
revised Why does a “&&=” Operator not exist?
deleted 1 characters in body
Oct
1
comment Why does a “&&=” Operator not exist?
True - just thinking it thru. Seems like an odd, difficult-to-read form of if (!a) a=b
Oct
1
answered Why does a “&&=” Operator not exist?
Sep
25
accepted How does SQL server evaluate the cost of an execution plan which contains a user defined function?
Sep
25
answered How does SQL server evaluate the cost of an execution plan which contains a user defined function?
Sep
25
revised ASP.NET How to add assembly in web.config?
edited tags; edited title
Sep
24
revised Business Logic in Database versus Code?
added 436 characters in body
Sep
24
answered Business Logic in Database versus Code?
Sep
24
comment memory leak debug
Need a little help - what language, platform, brand-o-beer?
Sep
23
comment IEs understanding of ‘this’
This code lives in an event handler?
Sep
21
accepted Puzzling wildcard problem in IIS7 & Module
Sep
21
accepted autofac, ASP.NET integration, and HttpRequestScoped
Sep
21
accepted autofac, ASP.NET integration, and Dispose
Sep
17
answered Keys, Lists, Values
Sep
17
answered How to get SQL Server to return a default of 0, if no rows exist?
Sep
17
answered What is the best length of a coding session before taking a break?
Sep
16
comment What do you do in SQL Server to CREATE OR ALTER?
I find this to be a reasonable approach to allowing my deployment scripts to be run many times safely. Besides, if I can club a seal without getting cold...
Sep
16
answered What do you do in SQL Server to CREATE OR ALTER?
Sep
10
awarded  Tumbleweed
Sep
9
revised Old content appearing on site. Auto Clear Cache?
added 27 characters in body
Sep
9
answered Old content appearing on site. Auto Clear Cache?
Sep
8
answered Is two way 1-n relationship between classes acceptable?
Sep
7
accepted Worst example of you duplicating existing functionality?
Sep
4
comment sql server 2005 - trigger to hash password at insertion
@Brisbe42: Good point. This has always been a concern of mine. Might be good topic for new question
Sep
4
comment sql server 2005 - trigger to hash password at insertion
Users are editing tables in your db?? Wow
Sep
4
answered sql server 2005 - trigger to hash password at insertion
Sep
4
answered why would someone fully qualify an Object in code when there is a using statement declared?
Sep
4
answered Worst example of you duplicating existing functionality?
Sep
3
comment C# 3.0 How can I get readonly property value?
He said 'don't store the age...'
Sep
3
answered C# Get Name of Derived Type from Inside base Class
Sep
3
asked Autofac, ASP.NET and Microsoft.Practices.ServiceLocation
Sep
3
comment Autofac in web applications, where should I store the container for easy access
Ah, but be careful which container you store! You don't wnat the application-container, that's for sure!