User Rory MacLeod - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T15:16:32Zhttp://stackoverflow.com/feeds/user/1016http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/335963/how-do-i-customise-the-create-database-statement-in-vsts-db-edition-deploy/1690719#16907191Answer by Rory MacLeod for How do I customise the CREATE DATABASE statement in VSTS DB Edition Deploy?Rory MacLeod2009-11-06T21:48:20Z2009-11-06T21:48:20Z<p>Better late than never, I know how to get the <code>$(DefaultDataPath)$(DatabaseName)</code> file names from your second example. </p>
<p>The SQL you're showing in your first code snippet suggests that you don't have scripts for creating the database files in your VSTS:DB project, perhaps by deliberately excluded them from any schema comparisons you've done. I found it a little counter-intuitive, but the solution is to let VSTS:DB script the MDF and LDF in you development environment, then edit those scripts to use the SQLCMD variables. </p>
<p>In your database project, go to the folder <em>Schema Objects > Database Level Objects > Storage > Files</em>. In there, add these two files:</p>
<p><strong>Database.sqlfile.sql</strong></p>
<pre><code>ALTER DATABASE [$(DatabaseName)]
ADD FILE (NAME = [$(DatabaseName)],
FILENAME = '$(DefaultDataPath)$(DatabaseName).mdf',
SIZE = 2304 KB, MAXSIZE = UNLIMITED, FILEGROWTH = 1024 KB)
TO FILEGROUP [PRIMARY];
</code></pre>
<p><strong>Database_log.sqlfile.sql</strong></p>
<pre><code>ALTER DATABASE [$(DatabaseName)]
ADD LOG FILE (NAME = [$(DatabaseName)_log],
FILENAME = '$(DefaultDataPath)$(DatabaseName)_log.ldf',
SIZE = 1024 KB, MAXSIZE = 2097152 MB, FILEGROWTH = 10 %);
</code></pre>
<p>The full database creation script that VSTS:DB, or for that matter VSDBCMD.exe, generates will now use the SQLCMD variables for naming the MDF and LDF files, allowing you to specify them on the command line, or in MSBuild. </p>
http://stackoverflow.com/questions/684982/c-xml-doc-refering-to-a-generic-type-of-a-generic-type-in-c-xml-documentation/978199#9781990Answer by Rory MacLeod for C#, XML-Doc: Refering to a generic type of a generic type in C# XML documentation?Rory MacLeod2009-06-10T21:17:48Z2009-06-10T21:27:11Z<p>There seems to be no way to refer to a generic of a generic in XML documentation, because actually, there's no way to refer to a generic of any specific type.</p>
<p>Lasse V Karlsen's <a href="http://stackoverflow.com/questions/684982/c-xml-doc-how-to-refer-to-expressionfunct-bool-correctly/797364#797364">answer</a> made it click for me:</p>
<p>If you write <code><see cref="IEnumerable{Int32}" /></code>, the compiler just uses "Int32" as the type parameter name, not the type argument. Writing <code><see cref="IEnumerable{HelloWorld}" /></code> would work just as well. This makes sense because there is no specific page in MSDN for "IEnumerable of int" that your documentation could link to.</p>
<p>To document your class properly, I think you'd have to write something like:</p>
<pre><code><summary>
Returns an <see cref="IEnumerable{T}" /> of <see cref="KeyValuePair{T,U}" />
of <see cref="String" />, <see cref="Int32" />.
</summary>
</code></pre>
<p>I hope you like text.</p>
http://stackoverflow.com/questions/50746/visual-studio-2008-randomly-hangs-on-test-run/305671#3056711Answer by Rory MacLeod for Visual Studio 2008 "randomly" hangs on test runRory MacLeod2008-11-20T15:34:20Z2008-11-20T15:34:20Z<p>I'm having the same problem, but only when I try to debug a test, and it happens every time. Looks like I'll have to read up on WinDBG and SOS before I can do anything to fix it.</p>
http://stackoverflow.com/questions/129120/when-should-i-use-debug-assert/129429#12942916Answer by Rory MacLeod for When should I use Debug.Assert()?Rory MacLeod2008-09-24T19:47:21Z2008-09-24T19:47:21Z<p>In <a href="http://rads.stackoverflow.com/amzn/click/0735622027" rel="nofollow">Debugging Microsoft .NET 2.0 Applications</a> John Robbins has a big section on assertions. His main points are:</p>
<ol>
<li>Assert liberally. You can never have too many assertions.</li>
<li>Assertions don't replace exceptions. Exceptions cover the things your code demands; assertions cover the things it assumes.</li>
<li>A well-written assertion can tell you not just what happened and where (like an exception), but why.</li>
<li>An exception message can often be cryptic, requiring you to work backwards through the code to recreate the context that caused the error. An assertion can preserve the program's state at the time the error occurred.</li>
<li>Assertions double as documentation, telling other developers what implied assumptions your code depends on.</li>
<li>The dialog that appears when an assertion fails lets you attach a debugger to the process, so you can poke around the stack as if you had put a breakpoint there.</li>
</ol>
<p>PS: If you liked Code Complete, I recommend following it up with this book. I bought it to learn about using WinDBG and dump files, but the first half is packed with tips to help avoid bugs in the first place.</p>
http://stackoverflow.com/questions/9666/is-accessing-a-variable-in-c-an-atomic-operation/10103#101034Answer by Rory MacLeod for Is accessing a variable in C# an atomic operation?Rory MacLeod2008-08-13T17:22:04Z2008-09-22T19:32:47Z<p>The correct answer seems to be, "Yes, mostly."</p>
<ol>
<li>John's answer referencing the CLI spec indicates that accesses to variables not larger than 32 bits on a 32-bit processor are atomic.</li>
<li><p>Further confirmation from the C# spec, section 5.5, <a href="http://msdn.microsoft.com/en-us/library/aa691278%28VS.71%29.aspx" rel="nofollow">Atomicity of variable references</a>:</p>
<blockquote>
<p>Reads and writes of the following data types are atomic: bool, char, byte, sbyte, short, ushort, uint, int, float, and reference types. In addition, reads and writes of enum types with an underlying type in the previous list are also atomic. Reads and writes of other types, including long, ulong, double, and decimal, as well as user-defined types, are not guaranteed to be atomic.</p>
</blockquote></li>
<li><p>The code in my example was paraphrased from the Membership class, as written by the ASP.NET team themselves, so it was always safe to assume that the way it accesses the s_Initialized field is correct. Now we know why.</p></li>
</ol>
<p>Edit: As Thomas Danecker points out, even though the access of the field is atomic, s_Initialized should really be marked <em>volatile</em> to make sure that the locking isn't broken by the processor reordering the reads and writes.</p>
http://stackoverflow.com/questions/9666/is-accessing-a-variable-in-c-an-atomic-operation15Is accessing a variable in C# an atomic operation?Rory MacLeod2008-08-13T11:41:29Z2008-09-22T19:32:47Z
<p>I've been raised to believe that if multiple threads can access a variable, then all reads from and writes to that variable must be protected by synchronization code, such as a "lock" statement, because the processor might switch to another thread halfway through a write.</p>
<p>However, I was looking through System.Web.Security.Membership using Reflector and found code like this:</p>
<pre><code>public static class Membership
{
private static bool s_Initialized = false;
private static object s_lock = new object();
private static MembershipProvider s_Provider;
public static MembershipProvider Provider
{
get
{
Initialize();
return s_Provider;
}
}
private static void Initialize()
{
if (s_Initialized)
return;
lock(s_lock)
{
if (s_Initialized)
return;
// Perform initialization...
s_Initialized = true;
}
}
}
</code></pre>
<p>Why is the s_Initialized field read outside of the lock? Couldn't another thread be trying to write to it at the same time? <strong>Are reads and writes of variables atomic?</strong> </p>
http://stackoverflow.com/questions/115658/when-reading-a-csv-file-using-a-datareader-and-the-oledb-jet-data-provider-how-c4When reading a CSV file using a DataReader and the OLEDB Jet data provider, how can I control column data types?Rory MacLeod2008-09-22T15:45:53Z2008-09-22T17:02:46Z
<p>In my C# application I am using the Microsoft Jet OLEDB data provider to read a CSV file. The connection string looks like this:</p>
<pre><code>Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\Data;Extended Properties="text;HDR=Yes;FMT=Delimited
</code></pre>
<p>I open an ADO.NET OleDbConnection using that connection string and select all the rows from the CSV file with the command:</p>
<pre><code>select * from Data.csv
</code></pre>
<p>When I open an OleDbDataReader and examine the data types of the columns it returns, I find that something in the stack has tried to guess at the data types based on the first row of data in the file. For example, suppose the CSV file contains:</p>
<pre><code>House,Street,Town
123,Fake Street,Springfield
12a,Evergreen Terrace,Springfield
</code></pre>
<p>Calling the OleDbDataReader.GetDataTypeName method for the House column will reveal that the column has been given the data type "DBTYPE_I4", so all values read from it are interpreted as integers. My problem is that House should be a string - when I try to read the House value from the second row, the OleDbDataReader returns null.</p>
<p>How can I tell either the Jet database provider or the OleDbDataReader to interpret a column as strings instead of numbers?</p>
http://stackoverflow.com/questions/115658/when-reading-a-csv-file-using-a-datareader-and-the-oledb-jet-data-provider-how-c/116111#1161112Answer by Rory MacLeod for When reading a CSV file using a DataReader and the OLEDB Jet data provider, how can I control column data types?Rory MacLeod2008-09-22T17:02:46Z2008-09-22T17:02:46Z<p>To expand on Marc's answer, I need to create a text file called Schema.ini and put it in the same directory as the CSV file. As well as column types, this file can specify the file format, date time format, regional settings, and the column names if they're not included in the file. </p>
<p>To make the example I gave in the question work, the Schema file should look like this:</p>
<pre><code>[Data.csv]
ColNameHeader=True
Col1=House Text
Col2=Street Text
Col3=Town Text
</code></pre>
<p>I could also try this to make the data provider examine all the rows in the file before it tries to guess the data types:</p>
<pre><code>[Data.csv]
ColNameHeader=true
MaxScanRows=0
</code></pre>
<p>In real life, my application imports data from files with dynamic names, so I have to create a Schema.ini file on the fly and write it to the same directory as the CSV file before I open my connection.</p>
<p>Further details can be found here - <a href="http://msdn.microsoft.com/en-us/library/ms709353(VS.85).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms709353(VS.85).aspx</a> - or by searching the MSDN Library for "Schema.ini file".</p>
http://stackoverflow.com/questions/84209/adding-a-guideline-to-the-editor-in-visual-studio/84325#843252Answer by Rory MacLeod for Adding a guideline to the editor in Visual StudioRory MacLeod2008-09-17T15:15:24Z2008-09-17T15:15:24Z<p>The registry path for Visual Studio 2008 is the same, but with 9.0 as the version number:</p>
<pre><code>HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\9.0\Text Editor
</code></pre>
http://stackoverflow.com/questions/31794/help-accessing-application-settings-using-configurationmanager/32160#321600Answer by Rory MacLeod for Help accessing application settings using ConfigurationManagerRory MacLeod2008-08-28T12:58:50Z2008-08-28T12:58:50Z<p>Visual Studio doesn't make it obvious which assembly reference you need to add. One way to find out would be to look up ConfigurationManager in the MSDN Library. At the top of the "about ConfigurationManager class" page it tells you which assembly and DLL the class is in.</p>
http://stackoverflow.com/questions/9666/is-accessing-a-variable-in-c-an-atomic-operation/12246#122461Answer by Rory MacLeod for Is accessing a variable in C# an atomic operation?Rory MacLeod2008-08-15T13:37:48Z2008-08-15T13:37:48Z<p>@Leon<br />
I see your point - the way I've asked, and then commented on, the question allows it to be taken in a couple of different ways.</p>
<p>To be clear, I wanted to know if it was safe to have concurrent threads read and write to a boolean field without any explicit synchronization code, i.e., is accessing a boolean (or other primitive-typed) variable atomic.</p>
<p>I then used the Membership code to give a concrete example, but that introduced a bunch of distractions, like the double-check locking, the fact that s_Initialized is only ever set once, and that I commented out the initialization code itself.</p>
<p>My bad.</p>
http://stackoverflow.com/questions/10190/how-to-return-a-page-of-results-from-sql/10282#102824Answer by Rory MacLeod for How to return a page of results from SQL?Rory MacLeod2008-08-13T19:29:28Z2008-08-13T19:29:28Z<p>I'd recommend either using LINQ, or try to copy what it does. I've got an app where I use the LINQ Take and Skip methods to retrieve paged data. The code looks something like this:</p>
<pre><code>MyDataContext db = new MyDataContext();
var results = db.Products
.Skip((pageNumber - 1) * pageSize)
.Take(pageSize);
</code></pre>
<p>Running SQL Server Profiler reveals that LINQ is converting this query into SQL similar to:</p>
<pre><code>SELECT [ProductId], [Name], [Cost], and so on...
FROM (
SELECT [ProductId], [Name], [Cost], [ROW_NUMBER]
FROM (
SELECT ROW_NUMBER() OVER (ORDER BY [Name]) AS [ROW_NUMBER],
[ProductId], [Name], [Cost]
FROM [Products]
)
WHERE [ROW_NUMBER] BETWEEN 10 AND 20
)
ORDER BY [ROW_NUMBER]
</code></pre>
<p>In plain English:<br />
1. Filter your rows and use the ROW_NUMBER function to add row numbers in the order you want.<br />
2. Filter (1) to return only the row numbers you want on your page.<br />
3. Sort (2) by the row number, which is the same as the order you wanted (in this case, by Name).</p>
http://stackoverflow.com/questions/9836/developer-friendly-erp/10178#101781Answer by Rory MacLeod for Developer Friendly ERPRory MacLeod2008-08-13T18:29:49Z2008-08-13T18:29:49Z<p>I've done a bit of integration between ASP.NET and Dynamics AX4 - it has a .NET API called Business Connector that gives you access to AX's full internal object model - if AX does it, your web app can do it too. My app had to execute arbitrary AX business logic functions and, apart from the crummy API documentation (I've been spoiled by MSDN), it was all pretty easy. The Business Connector is the lowest-level API - there's a bunch of web service options as well that work at a higher level.</p>
http://stackoverflow.com/questions/10098/best-mock-framework-that-can-do-both-webforms-and-mvc/10155#101550Answer by Rory MacLeod for Best mock framework that can do both WebForms and MVC?Rory MacLeod2008-08-13T18:17:00Z2008-08-13T18:17:00Z<p>I would just go ahead and use my favourite framework for both. I don't think there's any reason that I would choose one framework for web forms and another for MVC. A far bigger problem is how I would unit test my web forms pages at all, since it's notoriously hard to seperate the page from the rest of the HttpRequest stack.</p>
<p>My favourite is Moq. I've also used TypeMock. It costs money, but it's really powerful - it lets you mock concrete classes and constructors, so you could potentially mock things like HttpContext or HttpRequest.</p>
http://stackoverflow.com/questions/9666/is-accessing-a-variable-in-c-an-atomic-operation/9700#97000Answer by Rory MacLeod for Is accessing a variable in C# an atomic operation?Rory MacLeod2008-08-13T12:17:54Z2008-08-13T12:17:54Z<p>@John Richardson<br />
You're right. The real Membership class has that second check. I left it out because what I'm really interested in is whether the first call to s_Initialized, outside the lock, is thread-safe.</p>
http://stackoverflow.com/questions/9666/is-accessing-a-variable-in-c-an-atomic-operation/9695#96950Answer by Rory MacLeod for Is accessing a variable in C# an atomic operation?Rory MacLeod2008-08-13T12:14:13Z2008-08-13T12:14:13Z<p>@Keith<br />
The "Perform initialization" comment is standing in for all the config-reading, class-instantiating, and settings-setting that Membership does to initialize s_Provider, so I understand why that's in a "lock" - so that it's only done once.</p>
<p>@littlegeek<br />
I think you're looking at the MembershipProvider class. My example comes from System.Web.Security.Membership, which descends directly from Object.</p>
http://stackoverflow.com/questions/1690068/with-vsdbcmd-exe-and-vstsdb-gdr-how-can-i-change-the-mdf-and-ldf-pathsComment by Rory MacLeod on With VSDBCMD.exe and VSTSDB GDR, how can I change the MDF and LDF paths?Rory MacLeod2009-11-06T20:13:00Z2009-11-06T20:13:00ZThe paths from my machine are being written into the dbschema file. Is there a way to take them out or change them?http://stackoverflow.com/questions/728525/authentication-headers-not-sending-in-httpwebrequest/792450#792450Comment by Rory MacLeod on Authentication headers not sending in HttpWebRequestRory MacLeod2009-09-17T18:51:41Z2009-09-17T18:51:41ZPreAuthenticate causes the headers to be sent on every request except the first. From MSDN: "With the exception of the first request, the PreAuthenticate property indicates whether to send authentication information with subsequent requests "http://stackoverflow.com/questions/684982/c-xml-doc-refering-to-a-generic-type-of-a-generic-type-in-c-xml-documentationComment by Rory MacLeod on C#, XML-Doc: Refering to a generic type of a generic type in C# XML documentation?Rory MacLeod2009-06-10T20:57:35Z2009-06-10T20:57:35ZI was about to ask the same question. It took me a while to find this one because the title isn't very keyword-y. Can I suggest, "How do I refer to a generic type of a generic type in C# XML documentation"? You might also add the "generics" tag. I don't have the rep to do it myself.
http://stackoverflow.com/questions/365898/is-linq-a-cursor/365906#365906Comment by Rory MacLeod on Is linq a cursor?Rory MacLeod2008-12-31T14:14:15Z2008-12-31T14:14:15ZThe use of phrases like "returned to you row by row" and "don't get the entire result-set [...] right away" definitely makes it sound like LINQ-to-SQL is using a database cursor, which it definitely is not. -1.http://stackoverflow.com/questions/211567/enum-and-property-naming-conflicts/211576#211576Comment by Rory MacLeod on Enum and property naming conflictsRory MacLeod2008-10-17T10:21:40Z2008-10-17T10:21:40ZThe canonical example of this in my mind is DbCommand.CommandType being of type CommandType.http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/40984#40984Comment by Rory MacLeod on What is the single most influential book every programmer should read?Rory MacLeod2008-10-17T09:43:48Z2008-10-17T09:43:48ZI read this book after a disastrous project and it was a revelation to me. It let me see that I had been trying to do six month's worth of work in six weeks. It's the natural follow-up to Code Complete.http://stackoverflow.com/questions/119855/which-design-pattern-is-best-for-iterative-development/119879#119879Comment by Rory MacLeod on Which Design Pattern is best for Iterative development?Rory MacLeod2008-10-17T09:36:15Z2008-10-17T09:36:15ZI disagree. If Test Driven Development is part of your methodology, then you could look at "being able to unit test" as an implied requirement calling for the use of specific patterns, like DI or IOC.http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132522#132522Comment by Rory MacLeod on Good excuses NOT to use version controlRory MacLeod2008-09-25T13:37:15Z2008-09-25T13:37:15ZIf you have ever made a mistake, you need version control. Otherwise, you can do without it.http://stackoverflow.com/questions/9666/is-accessing-a-variable-in-c-an-atomic-operation/73827#73827Comment by Rory MacLeod on Is accessing a variable in C# an atomic operation?Rory MacLeod2008-09-22T19:25:10Z2008-09-22T19:25:10ZGood point. Reading the article you linked to, whether the code in Membership is right or wrong seems to depend on the precise details of the compiler and the processor, but I agree that s_Initialized should be made volatile just to be sure.http://stackoverflow.com/questions/9666/is-accessing-a-variable-in-c-an-atomic-operation/10103#10103Comment by Rory MacLeod on Is accessing a variable in C# an atomic operation?Rory MacLeod2008-09-22T19:20:46Z2008-09-22T19:20:46Z...I agree with Joe Duffy in the article you linked to when he says that we should always use "volatile" in situations like this just to be on the safe side.http://stackoverflow.com/questions/9666/is-accessing-a-variable-in-c-an-atomic-operation/10103#10103Comment by Rory MacLeod on Is accessing a variable in C# an atomic operation?Rory MacLeod2008-09-22T19:18:10Z2008-09-22T19:18:10ZI see your point, but the code in my example is accurate with respect to how the locking is done in the actual Membership class. Perhaps the ASP.NET team know enough about their compiler and their targeted processor to be confident that no reordering is going to occur. All the same...