flipdoubt

2,204
reputation
233 views

Registered User

name flipdoubt
member for 1 year
seen 16 hours ago
website
location US
age 38
.NET developer, generalist.
Dec
6
awarded  Mortarboard
Dec
3
revised How to help a struggling newbie do a better job?
edited title
Dec
1
awarded  Favorite Question
Dec
1
awarded  Popular Question
Nov
30
comment How to help a struggling newbie do a better job?
I would probably have to remove "underperforming" from the title, eh?
Nov
30
awarded  Good Question
Nov
30
comment How to help a struggling newbie do a better job?
I like the motivated part, but quizzes are not really my style. Did you ask any specific questions to learn what best motivates your co-worker?
Nov
30
comment How to help a struggling newbie do a better job?
Code review is item 3.
Nov
30
awarded  Nice Question
Nov
30
comment How to help a struggling newbie do a better job?
Just so people don't think I'm focusing on speed or keeping tabs on him, I have repeatedly told him the estimates and actuals are for his use and not mine. I use estimates to let me know when I need to ask for help (on SO) or take a break or think different. I am not at all interested in micro-managing, but I'm afraid I went too far in the opposite direction because I had no mentor (other than the web) when I started.
Nov
30
asked How to help a struggling newbie do a better job?
Nov
27
revised Configuring Automapper in Bootstrapper violates Open-Closed Principle?
added 20 characters in body
Nov
27
answered Configuring Automapper in Bootstrapper violates Open-Closed Principle?
Nov
17
awarded  Nice Question
Nov
12
comment Using static data access methods with the ADO.NET Entity Framework
I agree that it is thread safe because it only uses local variables, but that is probably the only reason the static code analysis suggests it should be a static method, as static data access is usually not a great idea. Any code that uses this static method to insert a user has a static dependency that is difficult to mock during unit tests, meaning unit testing code that calls this static method means the test has to go against a real database. Perhaps the original poster change the title to ask about thread safety.
Nov
4
comment Cannot put breakpoint in an ASP.NET MVC view when running in IIS7
An elevated admin?
Nov
2
revised How do EventArgs Cancel work in the FormClosing Event?
edited body
Nov
1
accepted How do EventArgs Cancel work in the FormClosing Event?
Nov
1
answered How do EventArgs Cancel work in the FormClosing Event?
Oct
31
awarded  Nice Answer
Oct
30
revised How to write cleaner code while instantiating an object with enumerations without using keyword?
added 15 characters in body
Oct
30
answered How to write cleaner code while instantiating an object with enumerations without using keyword?
Oct
28
comment Accessing a Shared File (UNC) From a Remote, Non-Trusted Domain With Credentials
Passing null for the user name/password allows me to connect, but how can I prove that I have disconnected? Is there something on the server I can look at? On Server 2003, I can watch the sessions, but the list of current sessions updates just as fast when my app does not use these APIs.
Oct
27
comment Open/close connection to UNC without credentials
Thanks for the answer, Chris. I found that part of the docs and actually tried that before you posted. It appears to work, as no error occurs when passing null, but I'm having a hard time proving that the connection is closed after calling WNetCancelConnection2. Is there something I should look for on the server?
Oct
23
comment Accessing a Shared File (UNC) From a Remote, Non-Trusted Domain With Credentials
Hi Brian. The docs you link to say you can pass NULL for the user name and password to use the current credentials. I will do some testing to see if this works.
Oct
23
comment Accessing a Shared File (UNC) From a Remote, Non-Trusted Domain With Credentials
Is there any way to use functions like these to explicitly open/close connections to a network machine using the current credentials, i.e., without providing the username and password? I am specifically interested in closing a connection after accessing a file share.
Oct
22
asked Open/close connection to UNC without credentials
Oct
22
comment Best way to access a UNC path in C#
I'm wrestling with a similar problem accessing files stored on UNCs, where the user can connect one minute, can't the next, but can the next-next minute. I suspect connections are not being closed after our app accesses the server, but we just use File.Copy and File.Exist from System.IO. How do we explicitly manage the "connect/read/disconnect" sequence?
Oct
21
comment How do MVC components fit together?
On the last clause of your first paragraph, "the model is also responsible for giving that data meaning and updating the view", it sounds like you are advocating for option 3, where the model gets a reference to the view, if the model is to update the view. I am curious as to how the model would update the view. Seems like this might lead to code smells.
Oct
21
revised How do MVC components fit together?
added 243 characters in body; added 76 characters in body
Oct
21
answered How do MVC components fit together?
Oct
13
awarded  Popular Question
Sep
25
comment How would you implement a breadcrumb helper in asp.net mvc?
Is the implementation of IBreadcrumbManager somewhere we can look at? Where does _breakcrumbLinkText come from?
Sep
8
accepted Generating an Xml Serialization assembly as part of my build.
Sep
5
comment how to get number of rows using SqlDataReader in C#
Henk is right: there is no member of the DataReader that allows you to get the number of rows because it is a forward only reader. You are better off first doing getting the count and then executing the query, perhaps in a multi-result query so you only hit the database once.
Sep
4
awarded  Popular Question
Sep
2
accepted SqlMembershipProvider administration
Aug
26
comment Why won’t InstallShield 2009 detect .NET 3.5 SP 1?
What is the more "generic" key?
Aug
23
accepted How to Increment Visual Studio build number using C++?
Aug
17
revised What are the Finalizer Queue and Control+ThreadMethodEntry?
added 158 characters in body
Aug
12
comment What are the Finalizer Queue and Control+ThreadMethodEntry?
Thanks for the great answer, Paul. That is the object reference graph I am talking about, looking at new objects in the second snapshot, after resources should be cleaned up. All the objects in the graph that implement IDisposable have a tool tip that says "Dispose() has been called for this object" but the selected object has no such tooltip.
Aug
12
comment Why won’t InstallShield 2009 detect .NET 3.5 SP 1?
Those keys are present, so we are taking the issue up with InstallShield.
Aug
12
asked What are the Finalizer Queue and Control+ThreadMethodEntry?
Aug
7
awarded  Yearling
Aug
5
asked Why won’t InstallShield 2009 detect .NET 3.5 SP 1?
Aug
5
comment What is the difference between SqlCommand.CommandTimeout and SqlConnection.ConnectionTimeout?
For the sake of argument, let's say I have a !**&#Q@? query that takes 32 seconds to run. If I set SqlCommand.CommandTimeout = 40 but leave SqlConnection.ConnectionTimeout at its default (presumably 30), will the connection timeout? In other words, do I have to set both properties? It sounds like you are saying "no," but I must have forgotten about the SqlConnection.ConnectionTimeout property and started questioning whether setting CommandTimeout does everything I need it to.
Aug
5
comment What is the difference between SqlCommand.CommandTimeout and SqlConnection.ConnectionTimeout?
Out of curiosity: Since the default timeout is 30 seconds, what happens if I set CommandTimeout to 60 seconds but do not change ConnectionTimeout from the default?
Jul
26
comment Using NameValueCollection in C# webservice gives not XML serializable error
Added the ColdFusion tag.
Jul
26
revised Using NameValueCollection in C# webservice gives not XML serializable error
edited tags
Jul
6
awarded  Popular Question