User alextansc - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T22:12:29Zhttp://stackoverflow.com/feeds/user/19582http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1628937/net-3-5-how-to-host-wf-runtime-in-wcf0.NET 3.5: How to host WF runtime in WCF?alextansc2009-10-27T05:39:13Z2009-11-07T14:38:15Z
<p>I need to find a tutorial for hosting the Workflow Foundation Runtime in WCF using .NET3.5.
Does anyone know any good links specifically on this?</p>
<p>UPDATE: Preferably, it should have some code samples on the implementation. </p>
http://stackoverflow.com/questions/1628937/net-3-5-how-to-host-wf-runtime-in-wcf/1641005#16410051Answer by alextansc for .NET 3.5: How to host WF runtime in WCF?alextansc2009-10-29T00:36:49Z2009-11-07T14:38:15Z<p>I've found an article that I've yet to thoroughly review, but it meets my requirement of having code samples and uses .NET 3.5.</p>
<p><strong>UPDATE:</strong> The article is what I wanted, so I'm marking this as my answer. </p>
<p><a href="http://msdn.microsoft.com/en-us/magazine/cc164251.aspx" rel="nofollow">Workflow Services by Matt Milner</a></p>
http://stackoverflow.com/questions/1270535/what-is-windows-vistas-equivalent-for-the-version-tab-in-properties3What is Windows Vista's equivalent for the Version tab in Properties?alextansc2009-08-13T07:28:18Z2009-10-21T06:26:31Z
<p>In Windows XP, whenever you right-click to select Properties to a particular DLL, you will be able to access the Version tab.</p>
<p>In windows Vista, there is the Details table, which had some, but not all, the usual displayable items in the Version tab. In particular, the Assembly Version is missing.</p>
<p>This is a head-banging problem for me right now, because I have a number of DLLs with the same file version, but different assembly versions. Right now, I can't tell the difference between them.</p>
<p>Is there any way I can view the Assembly Version in Vista?</p>
<p>P.S. This is a deployment problem in my case, because the difference between the DLLs is the Assembly Version, which I can view fine in Windows XP, but not in Windows Vista. So, I can't tell if we have the right DLLs deployed, since I can't view it in my Windows Vista machine.</p>
http://stackoverflow.com/questions/1270535/what-is-windows-vistas-equivalent-for-the-version-tab-in-properties/1599041#15990410Answer by alextansc for What is Windows Vista's equivalent for the Version tab in Properties?alextansc2009-10-21T06:26:31Z2009-10-21T06:26:31Z<p>The answer is head-bangingly simple, as it turns out: since Windows Vista can't show the Assembly version, use a 3rd-party tool that can. </p>
<p>In this case, the tool is our ol' friend: <a href="http://www.red-gate.com/products/reflector/" rel="nofollow">Reflector</a>. The assembly version, location, name & type of the DLL are displayed at the bottom of the tool.</p>
http://stackoverflow.com/questions/311165/how-do-you-convert-byte-array-to-hexadecimal-string-and-vice-versa-in-c16How do you convert Byte Array to Hexadecimal String, and vice versa, in C#? alextansc2008-11-22T10:03:13Z2009-09-14T21:13:35Z
<p>This is probably a common question over the Internet, but I couldn't find an answer that neatly explains how you can convert a byte array to a hexadecimal string, and vice versa.</p>
<p>Any takers?</p>
http://stackoverflow.com/questions/161890/how-do-you-track-the-time-of-replicated-rows-for-subscribers-in-sql-server-20052How do you track the time of replicated rows for Subscribers in SQL Server 2005?alextansc2008-10-02T11:54:25Z2009-09-14T16:20:39Z
<p>The basic problem is like this:<br />
A subscriber has successfully replicated a row from the publisher, using transactional replication. Now, how do we keep track the time of this row being last successfully replicated? </p>
<p>A friend has suggested the following solution, which he used for his SQL Server 2000:<br />
1) Add a datetime column.<br />
2) Change the replication stored procedure to update the datetime column (!).</p>
<p>The step #2 sets off all sorts of warning bells within me, so I'm asking if there are better solutions for SQL Server 2005 in this situation, before I even go into detail with his solution. </p>
http://stackoverflow.com/questions/267945/how-do-you-generate-that-default-avatar-in-stackoverflow15How do you generate that default avatar in Stackoverflow? [closed]alextansc2008-11-06T08:31:41Z2009-08-25T17:58:04Z
<p>I find it interesting, so was wondering if it has a name for it, or even better, an online generator for something like that? </p>
<p><hr /></p>
<p><a href="http://stackoverflow.com/questions/18557/how-does-stackoverflow-work-the-unofficial-faq">Return to FAQ Index</a></p>
http://stackoverflow.com/questions/1172229/linq2sql-how-to-implement-a-generic-maximum-string-length-validation0LINQ2SQL: How to implement a generic maximum string length validation?alextansc2009-07-23T14:39:43Z2009-07-24T16:31:06Z
<p>A common problem in LINQ2SQL is while the .NET String allows assigning any length to its variable, your database may have a specific max length constraint (like VARCHAR(5)). This will lead to the SQL error message "String or binary data would be truncated.", which is extremely unhelpful since it doesn't tell you which fields is the culprit.</p>
<p>Obviously, validating the input for the maximum string length will be the correct way. The main problem I faced is creating the necessary validation for every LINQ object in my project, and updating the validation if the maximum length of the field is updated.</p>
<p>Ideally, I need to work out a way to dynamically determine the max length of a generated field, so I do not risk forgetting to update the validation later. </p>
<p>The best possible implementation I can find so far is <a href="http://schotime.net/blog/index.php/2009/03/31/integrating-xval-validation-with-linq-to-sql/" rel="nofollow">"Integrating xVal Validation with Linq-to-Sql"</a>, which is already far superior to anything I can think. The only uncertain point is the dynamically determine the max length. </p>
<p>Has anyone seen or implemented anything similar? </p>
http://stackoverflow.com/questions/836278/concurrency-with-linq-to-sql-stored-procedures/910634#9106341Answer by alextansc for Concurrency with Linq To Sql Stored Proceduresalextansc2009-05-26T13:19:36Z2009-05-26T13:19:36Z<p>Not the answer you may be looking for, but since you mentioned using WCF as a business layer along with LINQ2SQL, I felt it is my obligation to point out this article for your reference:</p>
<p><a href="http://www.sidarok.com/web/blog/content/2008/05/26/linq-to-sql-with-wcf-in-a-multi-tiered-action-part-1.html" rel="nofollow">http://www.sidarok.com/web/blog/content/2008/05/26/linq-to-sql-with-wcf-in-a-multi-tiered-action-part-1.html</a></p>
<p>While the article implements ASP.NET as the main presentation layer, but considering your background, it might actually make the article easier to understand.</p>
<p>I personally handled the same sort of development as you are doing right now (winforms for client, WCF for business logic layer, LINQ2SQL for data access), but being complete beginner to WCF & LINQ2SQL at the time, I basically forced to drop the original values retention. This article comes closest to your needs, though to be honest I've not seen anything that works with using stored procedures. </p>
http://stackoverflow.com/questions/650847/linq2sql-help-with-sqlexception-about-union-intersect-and-except/653399#6533992Answer by alextansc for Linq2Sql: Help with SqlException about UNION, INTERSECT and EXCEPTalextansc2009-03-17T08:31:24Z2009-05-21T12:03:03Z<p>Since this looks like a problem with the generated SQL, you should try to use either an SQL Profiler, or use <a href="http://www.u2u.info/Blogs/Kris/Lists/Posts/Post.aspx?ID=11" rel="nofollow">this code for DebuggerWritter class</a> to write the SQL to your Output Window in Visual Studio. </p>
<p>The SQL error is normally caused by the fields retrieved for UNION is not the same for the 2 queries. For example, if the first query might have 3 fields, but the second query has 4 fields, this error will occur. So, seeing the generated SQL will definitely help in this case.</p>
http://stackoverflow.com/questions/442342/wcf-wsdl-location-address-with-https/892576#8925760Answer by alextansc for WCF WSDL location address with HTTPSalextansc2009-05-21T11:57:39Z2009-05-21T11:57:39Z<p>Yes, you can set an IP address as the host header. Just make sure that the external IP address is actually recognized internally as well. I learned this the hard way when in one of our projects, we are using an ISA Server as proxy. </p>
<p>If you ever encountered such a situation, and you still insist on using the external IP address as the host header, then you only option is to add the machine name of the web service into the hosts file.</p>
http://stackoverflow.com/questions/325275/in-wcf-should-you-have-large-maxbufferpoolsize-value-for-large-messages4In WCF, should you have large MaxBufferPoolSize value for large messages?alextansc2008-11-28T08:25:21Z2009-05-13T04:09:57Z
<p>For this WCF service I have developed, I have to set MaxReceivedMessageSize to 5MB. My current problem is figuring out whether it is better to have a larger MaxBufferPoolSize value, like 5MB, or retain the original 512KB value.</p>
<p>Does anyone knows what is the recommended setting for this scenario?<br />
In short, should I set MaxBufferPoolSize = 5242880 (5MB), or MaxBufferPoolSize = 524288 (512KB)?</p>
<p><strong>UPDATE:</strong> For clarification, the service is meant to insert a new customer record along with some scanned documents. As a result, the message size may reached up to 5MB. </p>
<p>We <em>could</em> try and separate the upload of the scanned document using alternate technologies, but the requirement was both customer record and scanned documents must be in the same transaction, so we decided to go with this approach, until we figure out how to use WCF's transaction capability.</p>
http://stackoverflow.com/questions/705841/any-solution-or-workaround-to-serializing-sqlparameter-in-wcf1Any solution or workaround to serializing SQLParameter in WCF?alextansc2009-04-01T14:42:45Z2009-04-02T00:58:07Z
<p>I originally defined in my MessageContract a collection of SQLParameters in order to create a simple stored procedure execution through a WCF service. Apparently, SQLParameter is not serializable, so I need some advice on how to proceed here.</p>
<p>Is it possible to still somehow use SQLParameter as part of my WCF contract, or I have to do something else, like creating a custom class with the same properties as an SQLParameter, then create the SQLParameters elsewhere in my code?</p>
<p><strong>UPDATE:</strong><br />
For further context as to why this situation comes about, originally the windows form client was connecting directly to the database to retrieve a DataSet for reporting purposes, using the usual ADO.NET objects. Now, the customer want a common web service to handle all reports. This is the best we can think of to handle it without too much changes. </p>
http://stackoverflow.com/questions/482912/sql-group-by-year-month-week-day-hour-sql-vs-procedural-performance/650983#6509830Answer by alextansc for SQL Group By Year, Month, Week, Day, Hour SQL vs Procedural Performancealextansc2009-03-16T15:46:00Z2009-03-16T15:46:00Z<p>I was looking for similar solution for reporting purposes, and came across this article called <a href="http://weblogs.sqlteam.com/jeffs/jeffs/archive/2007/09/10/group-by-month-sql.aspx" rel="nofollow">Group by Month (and other time periods)</a>. It shows various ways, good and bad, to group by the datetime field. Definitely worth looking at.</p>
http://stackoverflow.com/questions/194077/records-not-replicated-when-inserted-by-custom-replication-stored-procedure0Records not replicated when inserted by custom replication stored procedure.alextansc2008-10-11T13:40:09Z2009-03-16T10:03:44Z
<p>I've just recently setup a custom replication for my subscriber database, as described in <a href="http://stackoverflow.com/questions/161890/how-do-you-track-the-time-of-replicated-rows-for-subscribers-in-sql-server-2005">another post here</a>. Basically, when the publisher pushes a new record to the subscribers, the stored procedure will also insert a replicated time into an extra column in the table, and insert a new record to a log table.</p>
<p>My problem occurs when trying to replicate the log table back to the main publication database. This is what I did:</p>
<ol>
<li>In the database where the log table is located, I setup a new transactional replication, and set it to create a snapshot.</li>
<li>Once the publication is created, I create a new push subscription, and set it to initialize immediately.</li>
<li>Once the subscription is created, I checked the synchronization status and confirm that the snapshot is applied successfully.</li>
</ol>
<p>Now here's the weird part: if I manually add a record to the log table using the SQL Server Management Studio, the record will be replicated fine. If the record is added by the custom replication stored procedure, it will not. The status will always display "No replicated transactions are available".</p>
<p>I have no clue why the publication is behaving this way: I really don't see how it is treating the data inserted by the custom replication stored procedure differently.</p>
<p>Can someone explain what may I've done wrong?</p>
<p><strong>UPDATE:</strong> I finally have an answer for this problem a few months ago, just that I never got around to update this question. We have to log a support call to Microsoft, but we got a working solution.</p>
<p><hr>
<strong>ANSWER:</strong> To resolve the problem, when adding a subscription,
you need to run the script like below:</p>
<pre><code>sp_addsubscription @publication = 'TEST', ..., @loopback_detection = 'false'
</code></pre>
<p>The key to the solution is the last parameter shown above. By default, the generated subscription script will not have this parameter. </p>
http://stackoverflow.com/questions/194077/records-not-replicated-when-inserted-by-custom-replication-stored-procedure/649814#6498140Answer by alextansc for Records not replicated when inserted by custom replication stored procedure.alextansc2009-03-16T10:03:44Z2009-03-16T10:03:44Z<p>I finally have an answer for this problem a few months ago, just that I never got around to update this question. We have to log a support call to Microsoft, but we got a working solution.</p>
<p>To resolve the problem, when adding a subscription, you need to run the script like below:</p>
<pre><code>sp_addsubscription @publication = 'TEST', ..., @loopback_detection = 'false'
</code></pre>
<p>The key to the solution is the last parameter shown above: <strong>@loopback_detection = 'false'</strong>. By default, the generated subscription script will not have this parameter. </p>
http://stackoverflow.com/questions/194057/how-do-you-remove-obsolete-publications-in-the-replication-monitor0How do you remove obsolete publications in the Replication Monitor?alextansc2008-10-11T13:07:02Z2009-03-16T09:32:15Z
<p>Through some bungling in creating and removing publications, I was left with a lot of obsolete publications which for some reason still remains in the Replication Monitor. </p>
<p>How do you remove these publications? It doesn't seem to have a clear way to remove them.</p>
http://stackoverflow.com/questions/194057/how-do-you-remove-obsolete-publications-in-the-replication-monitor/346287#3462870Answer by alextansc for How do you remove obsolete publications in the Replication Monitor?alextansc2008-12-06T13:52:18Z2009-03-16T09:32:15Z<p>This is an old question of mine, but then again at least I found a way to resolve it.</p>
<p>I was able to remove the publications is by creating a new publication with the same name, then delete the publication again. This time the publication will no longer appear in the Replication Monitor. I did not remember if the publication has to be the same type as the obsoleted one, but it works.</p>
<p><strong>UPDATE:</strong> Okay, the publication type and database name is important, otherwise the newly created publication will be considered as a different publication. Kinda obvious, but now I'm sure of it.</p>
http://stackoverflow.com/questions/641950/linq-to-sql-inserting-large-object-from-net/642071#6420710Answer by alextansc for LINQ to SQL inserting large object from .NETalextansc2009-03-13T10:19:14Z2009-03-13T10:19:14Z<p>You might want to specify exactly where is the source of your 100,000 records coming from. </p>
<p>If you are retrieving the records from a non-database source, the fastest way I know to insert the records is by using the InsertAllOnSubmit method. Of course, this means 100,000 insert statements in a transaction, but without further details there isn't much choice in the matter.</p>
<p>If you are retrieving the records from a database, the performance will be better if you call a stored procedure instead. For example, in your stored procedure:</p>
<pre><code>INSERT INTO TableA
SELECT * FROM TableB
</code></pre>
<p>Then, you call the stored procedure with LINQ. </p>
http://stackoverflow.com/questions/638290/in-sql-how-can-i-convert-a-money-datatype-to-a-decimal/639374#6393740Answer by alextansc for In SQL how can I convert a money datatype to a decimal?alextansc2009-03-12T16:15:21Z2009-03-12T16:15:21Z<p>splattne's answer is almost correct, except for two minor changes:</p>
<pre><code>DECLARE @money AS money
SET @money = 2871047428.20
SELECT CAST(@money AS decimal(34,6)) / 10000000.0, @money / 10000000.0
</code></pre>
<p>This will give the correct answer: 287.10474282. What I did is changing the precision value and adding the ".0" to the division value.</p>
<p>The only thing that puzzles me right now is the fact I have to cast the value as decimal(34,6) instead of the expected decimal(34,8).</p>
<p>So, I wrote the query in another way, which makes more sense to me:</p>
<pre><code>DECLARE @money AS money
SET @money = 2871047428.20
SELECT CAST((@money / 10000000.0) AS decimal(34,8)), @money / 10000000.0
</code></pre>
<p>Please see which one works for you.</p>
http://stackoverflow.com/questions/331367/sql-statement-help-select-latest-order-for-each-customer0SQL Statement Help - Select latest Order for each Customer.alextansc2008-12-01T16:38:30Z2009-02-05T10:17:10Z
<p>Say I have 2 tables: Customers and Orders. A Customer can have many Orders.</p>
<p>Now, I need to show any Customers with his latest Order. This means if a Customer has more than one Orders, show only the Order with the latest Entry Time.</p>
<p>This is how far I managed on my own:</p>
<pre><code>SELECT a.*, b.Id
FROM Customer a INNER JOIN Order b ON b.CustomerID = a.Id
ORDER BY b.EntryTime DESC
</code></pre>
<p>This of course returns all Customers with one or more Orders, showing the latest Order first for each Customer, which is not what I wanted. My mind was stuck in a rut at this point, so I hope someone can point me in the right direction.</p>
<p>For some reason, I <i>think</i> I need to use the MAX syntax somewhere, but it just escapes me right now.</p>
<p><b>UPDATE:</b> After going through a few answers here (there's a lot!), I realized I made a mistake: I meant <b>any</b> Customer with his latest record. That means if he does not have an Order, then I do not need to list him. </p>
<p><b>UPDATE2:</b> Fixed my own SQL statement, which probably caused no end of confusion to others.</p>
http://stackoverflow.com/questions/306459/any-clever-way-to-fix-string-or-binary-data-would-be-truncated-warning-with-lin/416482#4164821Answer by alextansc for Any clever way to fix 'string or binary data would be truncated' warning with LINQalextansc2009-01-06T13:20:18Z2009-01-22T08:15:43Z<p>Seems like they fixed this problem for the Service Pack 1 of .NET 3.5, as noted in this link:
<a href="http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=353232" rel="nofollow">http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=353232</a></p>
<p>Might want to check it out yourself.</p>
http://stackoverflow.com/questions/385809/correctly-incrementing-values-using-linq-to-sql/385848#3858480Answer by alextansc for Correctly incrementing values using Linq to SQLalextansc2008-12-22T09:23:14Z2008-12-22T09:23:14Z<p>You could put the entire operation in a transaction, using a <a href="http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx" rel="nofollow">TransactionScope</a> class, like below:</p>
<pre><code>using (TransactionScope scope = new TransactionScope()){
var maxId = dc.Logs.Max(s => s.ID);
var newEntity = new Log(){
ID = maxId,
Note = "Test"
};
dc.Logs.InsertOnSubmit(newEntity);
dc.SubmitChanges();
scope.Complete();
}
</code></pre>
<p>By putting both the retrieval of the maximum ID and the insertion of the new records within the same transaction, you should be able to pull off an insert without having to retry in your manner. </p>
<p>One problem you might face with this method will be transaction deadlocks, especially if the table is heavily used. Do test it out to see if you require additional error-handling.</p>
<p>P.S. I included Jon Skeet's code to get the max ID in my code, because I'm pretty sure it will work correctly. :)</p>
http://stackoverflow.com/questions/347449/sql-statement-help-select-list-of-customerid-orderdate-with-the-most-records-i2SQL Statement Help - Select list of CustomerID, OrderDate with the most records in a table.alextansc2008-12-07T10:27:12Z2008-12-15T18:17:43Z
<p>I'll be using the <a href="http://www.codeplex.com/MSFTDBProdSamples/Release/ProjectReleases.aspx?ReleaseId=4004" rel="nofollow">AdventureWorks Database</a> to illustrate my problem.</p>
<p>I need to show for a particular customer a list of OrderDate with the most Orders.</p>
<p>My intial attempt was as follows:</p>
<pre><code>SELECT CustomerID, OrderDate, COUNT(1) Cnt
FROM Sales.SalesOrderHeader
WHERE CustomerID = 11300
GROUP BY CustomerID, OrderDate
ORDER BY Cnt DESC
</code></pre>
<p>This will get us the following result:</p>
<pre><code>CustomerID OrderDate Cnt
----------- ---------- ----
11300 2003-11-22 00:00:00.000 2
11300 2004-01-28 00:00:00.000 2
11300 2004-02-18 00:00:00.000 2
11300 2004-02-08 00:00:00.000 2
11300 2004-02-15 00:00:00.000 1
11300 2004-03-11 00:00:00.000 1
11300 2004-03-24 00:00:00.000 1
11300 2004-03-30 00:00:00.000 1
11300 2004-04-28 00:00:00.000 1
11300 2004-05-03 00:00:00.000 1
11300 2004-05-17 00:00:00.000 1
11300 2004-06-18 00:00:00.000 1
...
</code></pre>
<p>Not exactly what I wanted, as the result should only show all records where Cnt = 2, like so:</p>
<pre><code>CustomerID OrderDate Cnt
----------- ---------- ----
11300 2003-11-22 00:00:00.000 2
11300 2004-01-28 00:00:00.000 2
11300 2004-02-18 00:00:00.000 2
11300 2004-02-08 00:00:00.000 2
</code></pre>
<p>I'm stuck because I can't wrap my mind around two problems:</p>
<p>1) A customer might have more than one OrderDate with the same Cnt value. This means I can't do something like TOP 1 to get the desired result.<br />
2) Because the number of Orders for each customer may be different, I cannot use the following SQL statement:</p>
<pre><code>SELECT CustomerID, OrderDate, COUNT(1) Cnt
FROM Sales.SalesOrderHeader
WHERE CustomerID = 11300
GROUP BY CustomerID, OrderDate HAVING COUNT(1) > 1
ORDER BY Cnt DESC
</code></pre>
<p>This will work for getting the right result for this customer, but will definitely be wrong if the next customer has only one Order for a particular day.</p>
<p>So, either the query is impossible in this situation, or I am approaching the query in the wrong way. Any ideas on this problem is appreciated. </p>
<p>Also, since this will be a query in a stored procedure, any ideas on solving this in T-SQL will be acceptable.</p>
<p>UPDATE: Thanks to <a href="http://stackoverflow.com/questions/347449/sql-statement-help-select-list-of-customerid-orderdate-with-the-most-records-in#347460">Mehrdad</a>, I've been introduced to <a href="http://msdn.microsoft.com/en-us/library/ms190766(SQL.90).aspx" rel="nofollow">Common Table Expressions</a>, and Life is Good®. :) </p>
http://stackoverflow.com/questions/346329/how-to-add-wcf-service-reference-in-visual-studio-20050How to add WCF service reference in Visual Studio 2005?alextansc2008-12-06T14:40:01Z2008-12-06T23:39:37Z
<p>What do I need to allow Visual Studio 2005 to add WCF service reference to a project? </p>
<p>I know I should just use Visual Studio 2008, but I'm preparing for a "what-if" situation where the client does not have VS2008 just yet.</p>
http://stackoverflow.com/questions/346048/writing-an-update-query-in-asp-net-access-database-visual-basic/346321#3463211Answer by alextansc for Writing an update query in asp.net (access database) (visual basic)alextansc2008-12-06T14:25:43Z2008-12-06T14:25:43Z<p>The SQL Statement definitely is missing the SET keyword. Also, I suggest you to brush up on <a href="http://www.4guysfromrolla.com/webtech/092601-1.2.shtml" rel="nofollow">parameterized query</a>:</p>
<pre><code>Dim sql As String = "UPDATE tblAccounts " & _
"SET balance = ? " & _
"WHERE(accountID = ?)"
Dim cmd As New OleDbCommand(sql, odbconBanking)
cmd.Parameters.Add("Balance", CDbl(balance + value))
cmd.Parameters.Add("AccountId", accountID
cmd.ExecuteNonQuery()
</code></pre>
<p>This way, not only is the SQL Statment is clearer, it help prevents possible SQL injection attacks.</p>
http://stackoverflow.com/questions/334472/run-wcf-servicehost-with-multiple-contracts/334601#3346010Answer by alextansc for Run WCF ServiceHost with multiple contractsalextansc2008-12-02T16:33:06Z2008-12-02T16:33:06Z<p>Maybe this article: <a href="http://geeks.netindonesia.net/blogs/ferry/archive/2007/05/17/WCF-ServiceHost-_2D00_-Single-contract-multiple-endpoints.aspx" rel="nofollow">"WCF ServiceHost - Single contract multiple endpoints"</a> is what you're looking for. </p>
http://stackoverflow.com/questions/334171/outsourcing-a-project-that-needs-an-improvement-in-code-quality/334493#3344930Answer by alextansc for Outsourcing a project that needs an improvement in code qualityalextansc2008-12-02T16:09:49Z2008-12-02T16:09:49Z<p>There a <a href="http://blog.stackoverflow.com/2008/07/podcast-15/" rel="nofollow">StackOverflow podcast</a> that talked about outsourcing, which you might find useful. </p>
<p>Personally, when it comes to outsourcing, you <strong>must</strong> consider one thing:<br />
Who's going to maintain the solution once it is developed?</p>
<p>If the company's answer is "You.", then you're in trouble unless you're thoroughly involved in the development of the solution. This is where many of the other answers here applies.</p>
<p>If the company's answer is "The Outsourcing Party.", you might still be in trouble if your maintenance contract is not iron-clad. What may happened is just when a critical fix or change is required, the "Outsourcing Party" no longer exist, or won't support your request. </p>
<p>If you're not careful, the most likely outcome of this will be to either rewrite the solution internally anyway (after wasting time and money outsourcing), or spend more time and money finding another outsourcing party. </p>
http://stackoverflow.com/questions/333383/any-guides-on-learning-how-to-interpret-a-sql-querys-execution-plan-in-sql-serve3Any guides on learning how to interpret a SQL query's Execution Plan in SQL Server 2005?alextansc2008-12-02T08:51:44Z2008-12-02T09:07:28Z
<p>Is there any good article, tutorial or similar references on interpreting the Execution Plan of a query in SQL Server 2005?</p>
http://stackoverflow.com/questions/308925/any-sites-out-there-using-cardspace1Any sites out there using CardSpace?alextansc2008-11-21T14:26:31Z2008-11-21T15:41:52Z
<p>I'm interested to know if there's any sites out there that has implemented CardSpace as an alternative authentication. I certainly like to see how different it is from, say, using OpenID.</p>
http://stackoverflow.com/questions/1628937/net-3-5-how-to-host-wf-runtime-in-wcf/1628944#1628944Comment by alextansc on .NET 3.5: How to host WF runtime in WCF?alextansc2009-10-29T00:33:09Z2009-10-29T00:33:09ZThank you for extra information, but I came to know about WCF hosting through this article about Human Workflow: <a href="http://msdn.microsoft.com/en-gb/library/cc709416.aspx" rel="nofollow">msdn.microsoft.com/en-gb/library/…</a>. As it does not provide sample solution, I came here asking for one. I've found an article that might be the answer to my question, so I hope you can give your comment on it.http://stackoverflow.com/questions/1628937/net-3-5-how-to-host-wf-runtime-in-wcf/1628944#1628944Comment by alextansc on .NET 3.5: How to host WF runtime in WCF?alextansc2009-10-28T03:42:20Z2009-10-28T03:42:20ZThanks for the article, but from a quick glance I could not find anything specific on WCF hosting.http://stackoverflow.com/questions/1270535/what-is-windows-vistas-equivalent-for-the-version-tab-in-properties/1563854#1563854Comment by alextansc on What is Windows Vista's equivalent for the Version tab in Properties?alextansc2009-10-21T06:14:53Z2009-10-21T06:14:53ZCan't install visual studio on user machines where the DLLs are deployed, but it does help me find the answer I'm looking for. http://stackoverflow.com/questions/1270535/what-is-windows-vistas-equivalent-for-the-version-tab-in-properties/1587645#1587645Comment by alextansc on What is Windows Vista's equivalent for the Version tab in Properties?alextansc2009-10-21T06:12:53Z2009-10-21T06:12:53ZNot exactly the answer I'm looking for, but it is useful information. Thanks!http://stackoverflow.com/questions/1270535/what-is-windows-vistas-equivalent-for-the-version-tab-in-properties/1270969#1270969Comment by alextansc on What is Windows Vista's equivalent for the Version tab in Properties?alextansc2009-08-13T10:28:40Z2009-08-13T10:28:40ZProduct Version is one of the properties displayed in the Details Tab, but isn't the Assembly Version. Version doesn't show anything at all.http://stackoverflow.com/questions/1270535/what-is-windows-vistas-equivalent-for-the-version-tab-in-propertiesComment by alextansc on What is Windows Vista's equivalent for the Version tab in Properties?alextansc2009-08-13T09:12:03Z2009-08-13T09:12:03ZWell, I don't have access to Superuser.com, so I can't post there even if I wanted to. http://stackoverflow.com/questions/1172229/linq2sql-how-to-implement-a-generic-maximum-string-length-validation/1172451#1172451Comment by alextansc on LINQ2SQL: How to implement a generic maximum string length validation?alextansc2009-07-27T14:31:26Z2009-07-27T14:31:26ZI've tested it out using my own LINQ objects, and it works fine! With a few touch-ups, it's a pretty simple solution that caters most of my validation needs. Thank you!http://stackoverflow.com/questions/984596/conversion-c-to-vb-net-linq-to-sql/984611#984611Comment by alextansc on Conversion C# to VB.net Linq to Sqlalextansc2009-06-12T06:58:06Z2009-06-12T06:58:06Z@Nev_Rahd: you might want to edit your post and add the solved solution below your question. It's a lot easier to read with proper code syntax highlight.http://stackoverflow.com/questions/929301/why-splits-serverfault-from-stackoverflow/929304#929304Comment by alextansc on why splits serverfault from stackoverflow?alextansc2009-05-30T08:20:22Z2009-05-30T08:20:22Z@e-satis: I would argue that I want 2 internet: one for the things I'm interested in, the other for things I'm not. :) http://stackoverflow.com/questions/920408/linq-to-sql-delete-a-new-added-child-entity-before-submitchanges-failsComment by alextansc on LINQ to SQL : Delete a new added child entity before submitchanges - failsalextansc2009-05-29T10:44:09Z2009-05-29T10:44:09ZCan you tell me whether you are using a WinForm application or a Web application? Having trouble understanding what are you doing when adding or deleting a row in the Orders datagrid.http://stackoverflow.com/questions/325275/in-wcf-should-you-have-large-maxbufferpoolsize-value-for-large-messages/856024#856024Comment by alextansc on In WCF, should you have large MaxBufferPoolSize value for large messages?alextansc2009-05-21T12:05:48Z2009-05-21T12:05:48ZHi, maruti, I appreciated the links, but you should update it again. Current working link: <a href="http://www.elearningfromhome.com/Sample_Videos.php" rel="nofollow">elearningfromhome.com/Sample_Videos.php/…</a>http://stackoverflow.com/questions/851541/design-patterns-for-web-services/851632#851632Comment by alextansc on Design patterns for web services?alextansc2009-05-12T08:42:54Z2009-05-12T08:42:54ZI seconded this. I started using it about 2 years ago, and still reaping many benefits from the initial time invested on it ever since.http://stackoverflow.com/questions/705841/any-solution-or-workaround-to-serializing-sqlparameter-in-wcf/707915#707915Comment by alextansc on Any solution or workaround to serializing SQLParameter in WCF?alextansc2009-04-02T10:23:23Z2009-04-02T10:23:23ZThis is a sound plan. I think I've spent too much time worrying rather than getting it done. So, might as well roll up my sleeves and get working. :) http://stackoverflow.com/questions/705841/any-solution-or-workaround-to-serializing-sqlparameter-in-wcf/705890#705890Comment by alextansc on Any solution or workaround to serializing SQLParameter in WCF?alextansc2009-04-01T17:37:00Z2009-04-01T17:37:00ZI too agree with the riskiness of this design, but we also have a lot of reports with many different parameters, which is why we're looking for the easiest alternative, and this is what we can think of at the moment. ADO.NET Data Services might be worth checking out, though.http://stackoverflow.com/questions/107846/connectionstring-error-after-encypted-using-aspnetregiis-exe/110610#110610Comment by alextansc on Connectionstring error after encypted using aspnet_regiis.exealextansc2009-03-16T09:35:02Z2009-03-16T09:35:02ZDone. I didn't realized until today that SO now allows the question owner to set his own answer.