Enrico Campidoglio

2,005
Reputation
480 views

Registered User

Name Enrico Campidoglio
Member for 1 year
Seen 14 hours ago
Website
Location Malmö, Sweden
Age
Nov
24
awarded  Notable Question
Nov
12
awarded  Nice Question
Oct
13
accepted Single overloaded method at BLL layer vs BLL methods having one-to-one correspondence with DAL methods
Oct
12
comment Single overloaded method at BLL layer vs BLL methods having one-to-one correspondence with DAL methods
2) Yes, you can say that in general terms
Oct
10
awarded  Yearling
Oct
7
comment Single overloaded method at BLL layer vs BLL methods having one-to-one correspondence with DAL methods
No problem :-) I added a couple of notes in my answer to address your questions.
Oct
7
revised Single overloaded method at BLL layer vs BLL methods having one-to-one correspondence with DAL methods
added 556 characters in body; added 131 characters in body
Oct
7
comment Windows Scripting: What and How to do this? Batch Files or Something else?
@Jason: You're absolutely right. I forgot about the Windows Script Host (WSH), which supports scripting in VBScript and JScript and allows to interact with COM/ActiveX objects. In that regard it is the predecessor of PowerShell.
Oct
7
accepted Windows Scripting: What and How to do this? Batch Files or Something else?
Oct
6
comment Windows Scripting: What and How to do this? Batch Files or Something else?
PowerShell can do a lot more than most shells, especially the MS-DOS emulator ;-) I updated my answer with some more details about PowerShell.
Oct
6
revised Windows Scripting: What and How to do this? Batch Files or Something else?
added 1013 characters in body
Oct
6
answered Windows Scripting: What and How to do this? Batch Files or Something else?
Oct
5
accepted Visual Basic 6 WSDL Soap Proxy
Oct
5
answered Visual Basic 6 WSDL Soap Proxy
Oct
5
comment Single overloaded method at BLL layer vs BLL methods having one-to-one correspondence with DAL methods
I updated my answer to clarify on the points you brought up. I hope this helps.
Oct
5
revised Single overloaded method at BLL layer vs BLL methods having one-to-one correspondence with DAL methods
added 1016 characters in body; added 223 characters in body
Sep
30
accepted Disabling Required Field Validators server-side of checkbox is checked
Sep
30
answered Integrating MSBuild into Visual Studio
Sep
28
answered Single overloaded method at BLL layer vs BLL methods having one-to-one correspondence with DAL methods
Sep
23
revised General best practice for updating a record and its associated relationships in Linq-to-SQL
deleted 5 characters in body
Sep
22
answered General best practice for updating a record and its associated relationships in Linq-to-SQL
Sep
21
comment Threadpool in IIS context
The pleasure is all mine :-)
Sep
21
comment Threadpool in IIS context
Well, in your case it makes perfect sense to use background threads, since you want to execute multiple operations in parallel. In general, it is a good idea to use the Thread Pool instead of manually creating threads manually, for exactly the reasons you mentioned. If your site isn't handling a huge amount of traffic, the Thread Pool can probably satisfy all the requests without starving. However it is a good idea to have your web application running in its own Application Pool, to make sure it doesn't have to share the Thread Pool with others.
Sep
21
answered SPROC to update record: how to handle unchanged values
Sep
21
comment Threadpool in IIS context
Since all web requests are already handled asynchronously, I would say that in most cases you don't gain any significant benefit from running operations in background threads in web applications. An exception would probably be if you don't wish to block the processing of a request to wait on a long-running operation. In this case you could fire a background thread, do some more work on the request, and then finally wait for it to complete before you send the response to the client.
Sep
21
accepted Threadpool in IIS context
Sep
21
answered Threadpool in IIS context
Sep
18
answered Being Able to Debug a WinForms Application and Avoid the GUI from Freezing
Aug
26
accepted What is the recommended approach for Bulk Insert/Update in ASP.NET Gridview?
Aug
24
comment WCF Service parameters changed in .NET 2.0 client
This isn't quite the same question as the one you linked to. In this case the client is .NET 2.0, which does include the Nullable<T> class. However the solution still applies.
Aug
24
answered WCF Service parameters changed in .NET 2.0 client
Aug
24
comment WCF Service parameters changed in .NET 2.0 client
This would be a viable workaround only if the client proxy would never have to be regenerated in the future. Otherwise it would be a pain to go through all the generated method signatures to remove the extra parameter every time.
Aug
5
awarded  Nice Question
Jul
25
comment Cross-site AJAX requests
You need to edit your answer, since SO won't allow me to change a vote that's too old
Jul
22
awarded  Popular Question
Jul
9
accepted linq to xml access data based on field attribute
Jul
8
answered How do I Unit Test for relative performance?
Jul
8
answered Is there a “back” button/hotkey for navigation in Visual Studio 2008?
Jul
8
comment Repository pattern with .NET 1.1
He is referring to the repository implementation that uses the IRepository<TEntity> interface.
Jul
8
comment linq to xml access data based on field attribute
I believe LINQ to XML is very much intended to be an alternative to XPath, offering strongly-typed support and a more intuitive query syntax.
Jul
8
answered linq to xml access data based on field attribute
Jul
8
comment Enumerate with return type other than string?
I wouldn't derive from a class whose only purpose is to contain constant values, since polymorphism wouldn't make much sense. Instead I would keep adding related constants to the same class, or create new ones for new sets of constants.
Jul
8
comment Enumerate with return type other than string?
Right once again :-)
Jul
8
revised Enumerate with return type other than string?
added 42 characters in body
Jul
8
comment Enumerate with return type other than string?
You shouldn't be able to create instances of this struct, since it acts only as a container
Jul
8
comment Enumerate with return type other than string?
You are right, I changed them to read-only fields
Jul
8
revised Enumerate with return type other than string?
added 18 characters in body
Jul
8
answered Enumerate with return type other than string?
Jul
8
comment Cross-site AJAX requests
Even though posting the AJAX request from an iframe hosted on the same domain as the REST service is a viable solution (as long as there is no need for communication between the iframe and the page), I'm not very fond of iframes in general because of their compatibility issues. So JSONNP is probably the best solution currently available.
Jul
8
comment Cross-site AJAX requests
That's OK since I don't need to access the parent page from the iframe, but just make an AJAX request with the iframe's own content.