Chris

4,630
reputation
321 views

Registered User

name Chris
member for 1 year
seen 7 hours ago
website
location
age 29
8h
awarded  Nice Answer
1d
comment SQL Server Reporting Services and UTC time
I mean to say that it seems weird to require a second column strictly for reporting purposes.
1d
comment SQL Server Reporting Services and UTC time
I'm aware of the effect of the function on the query optimizer and the fact that the function call is the main reason for my performance woes. I've used a secondd column for holding the local date before to get rid of the function call, but it seems weird to me to have a DateCreatedUtc and then a DateCreatedLocal column right next to it. Maybe I'm worrying about something I shouldn't?
1d
comment Best data structure to retrieve by max values and ID?
Locating a record by ID seems irrelevant if I understand your question, because you're still going to have to scan the entire row set and sort the value to determine the top 100, no?
1d
asked SQL Server Reporting Services and UTC time
2d
awarded  Nice Answer
Dec
11
comment Using ASP.NET MVC, how to best avoid writing both the Add View and Edit View?
Rather than repost exactly what you've done, I might suggest you edit your answer to include an example of toggling a field to be read-only on the edit screen, as the original question asked about it.
Dec
10
answered SQL Server Reporting Services x-axis interval
Dec
10
asked SQL Server Reporting Services x-axis interval
Dec
10
answered jQuery: change icon to greyscale
Dec
8
comment NHibernate persist System.Uri
Neither solution works, because I need the individual parts of the URL stored as columns in the database for later analysis.
Dec
8
asked NHibernate persist System.Uri
Dec
7
comment Compiling applications using MS Office Interop assemblies
Aside from the technical implications, it's a license violation to install the DLLs on another computer for which a license does not exist.
Dec
7
comment Why is this invalid syntax?
@steveha: I get the reasoning for it. I was just commenting on the status of the internet and the fact that most of the python examples out there use code written for the 2.x codebase. I'll just have to read up on the "What's New" info and go from there, no biggie.
Dec
7
comment Why is this invalid syntax?
I'm guessing python 3.0 has a lot of breaking changes? Seems like raw_input no longer works in favor of input too. Hard for a beginner to follow examples when they're in incompatible versions. :(
Dec
7
asked Why is this invalid syntax?
Dec
7
accepted ELMAH filtering not working
Dec
7
comment What design pattern fits the bill in this scenario?
Not really. The command processors are pretty static - I just want a better way to abstract the logic away from the command receiver/handler.
Dec
7
comment Fire and Forget (Asynch) ASP.NET Method Call
There has been some discussion on whether calling BeginInvoke without EndInvoke is a bad idea - mostly because the not calling the EndInvoke operation on some delegates can result in a memory leak. Might I suggest ThreadPool.QueueUserWorkItem(cb=>ProcessCustomerInfo()) instead
Dec
7
answered NHibernate Caching Objects Based on Parent Class’s ID
Dec
6
comment What design pattern fits the bill in this scenario?
I should elaborate that the logic to determine which command needs to be executed is not as simple as say, 1 command per key word. If it were, I'd simply use a dictionary lookup to determine which command to execute.
Dec
6
comment What design pattern fits the bill in this scenario?
That would put me right back where I am now.. a bit long if/else or switch statement doing the parsing of the commands...
Dec
6
asked What design pattern fits the bill in this scenario?
Dec
5
comment Should a function’s comment include descriptions of work done by functions it calls?
This. Really this. A simple concept that seems lost on a lot of developers.
Dec
4
comment NHibernate - how to get an item that is not referenced by an item in another table
Gave you the answer because it was closest to what I needed to do.
Dec
4
revised NHibernate - how to get an item that is not referenced by an item in another table
added 689 characters in body
Dec
4
comment nhibernate - cyclic reference not updating
I tried a one-to-one, but apparently that only works if the two share a primary key, which these do not.
Dec
4
asked nhibernate - cyclic reference not updating
Dec
4
revised NHibernate - how to get an item that is not referenced by an item in another table
added 551 characters in body
Dec
4
comment NHibernate - how to get an item that is not referenced by an item in another table
The problem is that the Voucher object doesn't have any reference to the Entry to which it may be assigned. If it did, this would be much easier. Any suggestions (other than adding a reference / column)?
Dec
3
asked NHibernate - how to get an item that is not referenced by an item in another table
Dec
3
comment Structuremap (or any IoC, really) architecture question
Er, that should be convention over configuration mentality.
Dec
3
comment Structuremap (or any IoC, really) architecture question
In my case, the application is fairly simple, so the web application will be using the repositories directly. My only wish is to do so in a way that allows me to switch out the repositories with a single configuration change. Sounds like I should probably put this in the application_start event of my ASP.NET site. I just wasn't sure if it was typical to require the client application to handle so much configuration up front. I like the configuration over convention mentality myself.
Dec
3
asked Structuremap (or any IoC, really) architecture question
Dec
3
comment Duplicate checking in SQL server - one column or many?
Yeah I'd .ToUpperInvariant() everything before hashing to avoid this problem.
Dec
3
accepted What kind of Service is OpenID and Gravatar
Dec
2
asked Font and line spacing in different browsers
Dec
2
comment NHibernate - Do I have to have a class to interface with a table?
Thanks, this is exactly what I ended up doing.
Dec
2
comment NHibernate - Do I have to have a class to interface with a table?
Yeah it's not, but it's close enough for me to derive a solution. :)
Dec
2
comment NHibernate - Do I have to have a class to interface with a table?
Duplicate of stackoverflow.com/questions/606607/… (slap slap slap)
Dec
2
asked NHibernate - Do I have to have a class to interface with a table?
Dec
2
comment Duplicate checking in SQL server - one column or many?
I'm trying to optimize the query that checks for duplicates because for every 1,000 inserts we may have 10,000 duplicate checks.
Dec
2
comment Duplicate checking in SQL server - one column or many?
Well when I say my dataset isn't that large, I mean it's only ~20-50 million rows. Still pretty large, but not approaching terabyte+ capacity. Given an index key size of 300bytes per record, I'm looking at 5.7gb of index data for 20 million rows vs 610mb for a 32 byte key. The latter will be much better performance wise, I think, because the entire index might potentially be kept in memory.
Dec
2
asked Duplicate checking in SQL server - one column or many?
Dec
2
answered What kind of Service is OpenID and Gravatar
Dec
1
asked ASP.NET control property with [Flags] enum
Dec
1
asked Recommendation system experimentation
Nov
30
comment image vertical alignment issue
Inline-block was an attempted fix that had no effect. Firebug reports no margin / padding. I actually want it middle aligned. I pointed out the baseline as an illustration of the difference. Nothing happenese when I merge the two into one tag.
Nov
30
asked image vertical alignment issue
Nov
24
comment NHibernate criteria query question
@Mike: Yes, I want to stick to strongly typed queries, hence my aversion to HQL. @Mauricio, I realize I'm going to have to execute the queries either way. Is there a way to do related queries (one that depends on another) using MultiCriteria? I didn't find much documentation on it.