User ajmastrean - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T03:46:43Zhttp://stackoverflow.com/feeds/user/3619http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1849001/how-do-i-get-itemstatus-from-a-uitestcontrol0How do I get ItemStatus from a UITestControl?ajmastrean2009-12-04T19:03:28Z2009-12-04T19:13:23Z
<p>The <a href="http://msdn.microsoft.com/en-us/library/ms747327.aspx" rel="nofollow">UI Automation framework</a> has a base class, <a href="http://msdn.microsoft.com/en-us/library/system.windows.automation.automationelement.aspx" rel="nofollow">AutomationElement</a>, that has a property, <a href="http://msdn.microsoft.com/en-us/library/system.windows.automation.automationproperties.itemstatus%28VS.100%29.aspx" rel="nofollow">ItemStatus</a>, that can be used to store arbitrary strings. I'm trying to get that property from the Visual Studio 2010 <a href="http://msdn.microsoft.com/en-us/library/dd286726%28VS.100%29.aspx" rel="nofollow">Coded UI Tests</a> base class, <a href="http://msdn.microsoft.com/en-us/library/microsoft.visualstudio.testtools.uitesting.uitestcontrol%28VS.100%29.aspx" rel="nofollow">UITestControl</a>.</p>
http://stackoverflow.com/questions/1849001/how-do-i-get-itemstatus-from-a-uitestcontrol/1849046#18490460Answer by ajmastrean for How do I get ItemStatus from a UITestControl?ajmastrean2009-12-04T19:11:12Z2009-12-04T19:11:12Z<p>Look at the Coded UI Tests generated code for <code>WpfControl</code>. It has a property, NativeElement. This property is an <code>AutomationElement</code>.</p>
<pre><code>public abstract class WpfControl : UITestControl
{
...
public virtual object NativeElement
{
get
{
return ((object)(this.GetProperty(UITestControlProperties.Common.NativeElement)));
}
}
...
}
</code></pre>
<p>You can write an extension method to cast it and get ItemStatus.</p>
<pre><code>public static string GetItemStatus(this WpfControl control)
{
var automationElement = (AutomationElement)control.NativeElement;
return automationElement.Current.ItemStatus;
}
</code></pre>
<p>I am not certain why NativeElement is recorded as an <code>object</code> (which makes the getter cast redundant). All WPF controls' NativeElement are of type <code>AutomationElement</code>. I would suggest editing the generated code and simply calling <code>control.NativeElement.Current.ItemStatus</code> directly.</p>
http://stackoverflow.com/questions/1848975/can-i-show-itemstatus-in-visual-uia-verify0Can I show ItemStatus in Visual UIA Verify?ajmastrean2009-12-04T18:57:35Z2009-12-04T18:57:35Z
<p>Can I show the <a href="http://msdn.microsoft.com/en-us/library/system.windows.automation.automationproperties.itemstatus%28VS.100%29.aspx" rel="nofollow">ItemStatus</a> property of an <a href="http://msdn.microsoft.com/en-us/library/system.windows.automation.automationelement.aspx" rel="nofollow">AutomationElement</a> in <a href="http://uiautomationverify.codeplex.com/" rel="nofollow">Visual UIA Verify</a>?</p>
http://stackoverflow.com/questions/1848929/how-do-i-show-itemstatus-in-ui-spy0How do I show ItemStatus in UI Spy?ajmastrean2009-12-04T18:50:26Z2009-12-04T18:52:26Z
<p>How do I show the <a href="http://msdn.microsoft.com/en-us/library/system.windows.automation.automationproperties.itemstatus%28VS.100%29.aspx" rel="nofollow">ItemStatus</a> property of an <a href="http://msdn.microsoft.com/en-us/library/system.windows.automation.automationelement.aspx" rel="nofollow">AutomationElement</a> in <a href="http://msdn.microsoft.com/en-us/library/ms727247.aspx" rel="nofollow">UI Spy</a>?</p>
http://stackoverflow.com/questions/1848929/how-do-i-show-itemstatus-in-ui-spy/1848943#18489430Answer by ajmastrean for How do I show ItemStatus in UI Spy?ajmastrean2009-12-04T18:52:26Z2009-12-04T18:52:26Z<p>With UI Spy open</p>
<ol>
<li>From the <strong>View menu</strong> </li>
<li>Click <strong>Configure Properties</strong> </li>
<li>Expand <strong>AutomationElement</strong> </li>
<li>Expand <strong>Misc</strong> </li>
<li>Check <strong>ItemStatus</strong></li>
</ol>
http://stackoverflow.com/questions/1511608/how-to-create-a-deploy-package-for-codedui-test-recorded-in-visual-studio-2010/1683973#16839731Answer by ajmastrean for How to create a deploy package for "CodedUI Test" recorded in Visual Studio 2010 beta ajmastrean2009-11-05T22:07:04Z2009-12-04T18:46:26Z<p><strong>Configure an environment with a "standalone" MSTest</strong></p>
<p>A series of <a href="http://arstechnica.com/microsoft/news/2009/10/visual-studio-2010-simplified-to-four-skus-beta-2-arrives.ars" rel="nofollow">new test tools</a> is being introduced with Visual Studio 2010. <a href="http://msdn.microsoft.com/en-us/library/dd648127%28VS.100%29.aspx#TestAgents" rel="nofollow">Team Agents</a> provides a very small footprint and includes <strong>MSTest</strong> (it will be installed in a Visual Studio path).</p>
<blockquote>
<p>C:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE\mstest.exe</p>
</blockquote>
<p>You can copy the contents of your test project(s) <code>bin\</code> directory to the machine with Team Agents installed and execute MSTest against your test container.</p>
<blockquote>
<p>mstest /testcontainer:x:\test-project\automated-tests.dll"</p>
</blockquote>
http://stackoverflow.com/questions/1309315/how-can-i-get-a-controls-datacontext-from-an-external-application-using-ui-autom/1848837#18488371Answer by ajmastrean for How can I get a control's DataContext from an external application using UI Automation (and/or White)ajmastrean2009-12-04T18:33:58Z2009-12-04T18:33:58Z<p><strong><a href="http://msdn.microsoft.com/en-us/library/system.windows.automation.automationproperties.itemstatus%28VS.100%29.aspx" rel="nofollow">ItemStatus (Attached Property)</a></strong></p>
<blockquote>
<p>This property enables a client to ascertain whether an element is conveying status about an item. For example, an item associated with a contact in a messaging application might be "Busy" or "Connected".</p>
</blockquote>
<p>You cannot retrieve the underlying class, you can only get UI stuff. But, the Automation Peer for your business class can expose an <a href="http://msdn.microsoft.com/en-us/library/system.windows.automation.peers.automationpeer.getitemstatus%28VS.100%29.aspx" rel="nofollow">Item Status</a>. You could put a simple string in there or <a href="http://www.wpfmentor.com/2009/01/how-to-add-custom-data-to.html" rel="nofollow">even XML</a>.</p>
http://stackoverflow.com/questions/1848721/where-do-i-get-ui-spy0Where do I get UI Spy?ajmastrean2009-12-04T18:16:00Z2009-12-04T18:19:25Z
<p>Where can I download <a href="http://msdn.microsoft.com/en-us/library/ms727247.aspx" rel="nofollow">UI Spy</a>?</p>
http://stackoverflow.com/questions/1848721/where-do-i-get-ui-spy/1848751#18487510Answer by ajmastrean for Where do I get UI Spy?ajmastrean2009-12-04T18:19:25Z2009-12-04T18:19:25Z<p><strong><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=c17ba869-9671-4330-a63e-1fd44e0e2505" rel="nofollow">Microsoft Windows SDK for Windows 7 and .NET Framework 3.5 SP1</a></strong></p>
<p>The latest UI Spy can be found in this Windows SDK. The SDK contains many tools, the minimum selection on the Installation Options screen is</p>
<blockquote>
<p>.NET Development Tools</p>
</blockquote>
<p>Under Developer Tools | Windows Development Tools</p>
http://stackoverflow.com/questions/1480292/ui-automation-tool-for-a-windows-based-wpf-application-with-record-and-playback-f/1848697#18486970Answer by ajmastrean for UI automation tool for a windows based WPF application with Record and Playback feautureajmastrean2009-12-04T18:11:53Z2009-12-04T18:11:53Z<p><strong><a href="http://msdn.microsoft.com/en-us/library/dd286726%28VS.100%29.aspx" rel="nofollow">Visual Studio 2010 Coded UI Tests</a></strong></p>
<blockquote>
<p>You can use Visual Studio 2010 Ultimate or Visual Studio 2010 Premium to create automated tests of the user interface known as coded UI tests. These tests provide functional testing of the user interface and validation of user interface controls.</p>
</blockquote>
<p><hr></p>
<p>I am using Coded UI Tests to automate tests of a WPF application built on the <a href="http://msdn.microsoft.com/en-us/magazine/dd419663.aspx" rel="nofollow">MVVM</a> pattern. The <a href="http://blogs.msdn.com/mathew%5Faniyan/archive/2009/11/05/tutorial-coded-ui-test-beta2.aspx" rel="nofollow">record/playback</a> features of the tool are impressive, generating really nice models. For large suites, the advice is to <a href="http://blogs.msdn.com/balagans/archive/2009/11/12/9921231.aspx" rel="nofollow">tear apart the generated code</a>, structuring and extending it for your own purposes.</p>
<p>I recommend <a href="http://www.codeplex.com/UIAutomationVerify" rel="nofollow">Visual UIA Verify</a> to assist viewing the automation structure of your application while developing and debugging.</p>
http://stackoverflow.com/questions/1811019/i-want-spy-but-i-dont-have-visual-studio/1848628#18486280Answer by ajmastrean for I want Spy++ but I don't have Visual Studioajmastrean2009-12-04T17:59:24Z2009-12-04T17:59:24Z<p><a href="http://www.codeplex.com/UIAutomationVerify" rel="nofollow"><strong>Visual UI Automation Verify</strong></a></p>
<blockquote>
<p>With the Visual UIA Verify, you can quickly find and select any UI element anywhere on the desktop. Based on the specific control type and the supported control patterns, UIA Verify provides the built-in test scenarios prioritized for the particular UI element. Developers can add additional test scenarios by adding the code to the UIA Test Library. The tool can output the test results or the summary in various forms. Visual UIA Verify can output test details in HTML.</p>
</blockquote>
http://stackoverflow.com/questions/1842974/unity-fatal-execution-engine-error-when-resolving-a-timespan0Unity: Fatal Execution Engine Error when resolving a TimeSpanajmastrean2009-12-03T21:16:47Z2009-12-03T22:15:53Z
<p>I am trying to resolve a <a href="http://msdn.microsoft.com/en-us/library/system.timespan.aspx" rel="nofollow">TimeSpan</a> using <a href="http://msdn.microsoft.com/en-us/library/cc468366.aspx" rel="nofollow">Unity</a>. Executing the container Resolve call results in a <a href="http://msdn.microsoft.com/en-us/library/ms228990.aspx" rel="nofollow">FatalExecutionEngineError</a>. </p>
<blockquote>
<p>FatalExecutionEngineError was detected
Message: The runtime has encountered a fatal error. The address of the error was at 0x543c3dc8, on thread 0x1bb8. The error code is 0xc0000005. This error may be a bug in the CLR or in the unsafe or non-verifiable portions of user code. Common sources of this bug include user marshaling errors for COM-interop or PInvoke, which may corrupt the stack.</p>
</blockquote>
<p>Running the test in DEBUG causes the following file to be requested by the debugger.</p>
<blockquote>
<p>X:\Unity\Src\ObjectBuilder\Strategies\BuildPlan\DynamicMethod\DynamicMethodBuildPlan.cs</p>
</blockquote>
<p>And it shows the following <a href="http://msdn.microsoft.com/en-us/library/system.executionengineexception.aspx" rel="nofollow">ExecutionEngineException</a> on line 38.</p>
<blockquote>
<p>System.ExecutionEngineException was unhandled
Message="Exception of type 'System.ExecutionEngineException' was thrown."
InnerException:</p>
</blockquote>
<p>Test</p>
<pre><code>[TestClass]
public class Example
{
private readonly IUnityContainer container = new UnityContainer();
[TestInitialize]
public void TestInitialize()
{
container.Register<TimeSpan>(new ExternallyControlledLifetimeManager());
}
[TestMethod]
public void Test()
{
var expected = new TimeSpan();
var actual = container.Resolve<TimeSpan>();
Assert.AreEqual(expected, actual);
}
}
</code></pre>
http://stackoverflow.com/questions/350377/deploy-an-app-config-based-on-build-configuration4Deploy an app.config based on build configurationajmastrean2008-12-08T18:22:37Z2009-12-03T09:25:51Z
<p>I have three custom build configurations { Dev, Qs, Prd }. So, I have three app configs { Dev.config, Qs.config, Prd.config }. I know how to edit the .csproj file to output the correct one based on the current build configuration.</p>
<pre><code><Target Name="AfterBuild">
<Delete Files="$(TargetDir)$(TargetFileName).config" />
<Copy SourceFiles="$(ProjectDir)$(Configuration).config" DestinationFiles="$(TargetDir)$(TargetFileName).config" />
</Target>
</code></pre>
<p>My problem is, I need to have <strong>six</strong> build configurations { Dev, Qs, Prd } x { Debug, Release }. I need to support the debug and release settings (optimizations, pdb, etc) for each environment. However, the app config values don't change between debug/release.</p>
<p>How do I keep the build script as generic as possible and use only the three app configs? I don't want to hard code too many conditional strings.</p>
http://stackoverflow.com/questions/284609/performance-in-sql-mobile-with-one-big-column-thats-not-being-selected2Performance in SQL Mobile with one big column that's not being selectedajmastrean2008-11-12T16:58:07Z2009-12-01T14:14:23Z
<p>I have a SQL Mobile database with one table. It has several columns with useful, often queried data and one column that stores a relatively large string per record (1000+ characters) that is not queried often.</p>
<p>Imagine this fake schema, the "lifeStory" field is the large one.</p>
<pre><code>table1
String firstName
String lastName
String address
String lifeStory
</code></pre>
<p>A representative query would be</p>
<pre><code>SELECT firstName, lastName, address FROM table1 WHERE firstName = :p1
</code></pre>
<p>Does anyone know of any performance concerns leaving that large, infrequently queried column in this table?</p>
http://stackoverflow.com/questions/41792/instance-constructor-sets-a-static-member-is-it-thread-safe3Instance constructor sets a static member, is it thread safe?ajmastrean2008-09-03T14:28:57Z2009-12-01T14:13:30Z
<p>I am refactoring some code and am wondering about the use of a 'lock' in the instance constructor.</p>
<pre><code>public class MyClass
{
private static Int32 counter = 0;
private Int32 myCount;
public MyClass()
{
lock(this)
{
counter++;
myCount = counter;
}
}
}
</code></pre>
<p>Please confirm</p>
<ol>
<li>Instance constructors are thread-safe.</li>
<li>The lock statement prevents access to that code block, not to the static 'counter' member.</li>
</ol>
<p>If the intent of the original programmer were to have each instance know its 'count', how would I synchronize access to the 'counter' member to ensure that another thread isn't new'ing a 'MyClass' and changing the count before this one sets its count?</p>
<p><em>FYI - This class is not a singleton. Instances must simply be aware of their number.</em></p>
http://stackoverflow.com/questions/42505/thread-safe-use-of-a-singletons-members7Thread-safe use of a singleton's membersajmastrean2008-09-03T20:29:15Z2009-12-01T13:59:40Z
<p>I have a C# singleton class that multiple classes use. Is access through <code>Instance</code> to the <code>Toggle()</code> method thread-safe? If yes, by what assumptions, rules, etc. If no, why <em>and</em> how can I fix it?</p>
<pre><code>public class MyClass
{
private static readonly MyClass instance = new MyClass();
public static MyClass Instance
{
get { return instance; }
}
private int value = 0;
public int Toggle()
{
if(value == 0)
{
value = 1;
}
else if(value == 1)
{
value = 0;
}
return value;
}
}
</code></pre>
http://stackoverflow.com/questions/1822612/relative-path-root-of-deploymentitemattribute0Relative path root of DeploymentItemAttributeajmastrean2009-11-30T21:45:47Z2009-11-30T21:50:50Z
<p>Using <a href="http://msdn.microsoft.com/en-us/library/ms182486.aspx" rel="nofollow">MSTest</a>, what is the relative path root of the <a href="http://msdn.microsoft.com/en-us/library/microsoft.visualstudio.testtools.unittesting.deploymentitemattribute%28VS.80%29.aspx" rel="nofollow">DeploymentItemAttribute</a>.</p>
http://stackoverflow.com/questions/1822612/relative-path-root-of-deploymentitemattribute/1822634#18226341Answer by ajmastrean for Relative path root of DeploymentItemAttributeajmastrean2009-11-30T21:50:18Z2009-11-30T21:50:18Z<p>Per the <a href="http://msdn.microsoft.com/en-us/library/microsoft.visualstudio.testtools.unittesting.deploymentitemattribute.aspx" rel="nofollow">MSDN</a> page...</p>
<blockquote>
<p>Relative paths are relative to the
RelativePathRoot setting found in the
.testrunconfig file.</p>
</blockquote>
<p>That setting is, by default, the <strong>Solution directory</strong>. So, if you have this project structure</p>
<pre><code>SecretProject\
ComponentA\
ComponentA.Test\
Resources\
required.xml
ComponentA.Test.csproj
Tests.cs
SecretProject.sln
</code></pre>
<p>And you want to deploy <strong>required.xml</strong>, you're going to create a DeploymentItemAttribute like this</p>
<pre><code>[TestClass]
public class Tests
{
[TestMethod]
[DeploymentItem("ComponentA.Test\Resources\required.xml")]
public void Test()
{
}
}
</code></pre>
<p>It seems the file properties need to be set to '<strong>Content</strong>' and '<strong>Copy always</strong>' or 'Copy if newer'. There are advanced examples on <a href="http://msdn.microsoft.com/en-us/library/ms182475%28VS.80%29.aspx" rel="nofollow">this MSDN page</a>.</p>
http://stackoverflow.com/questions/1822454/add-an-xml-schema-to-visual-studio0Add an XML schema to Visual Studioajmastrean2009-11-30T21:17:16Z2009-11-30T21:24:02Z
<p>I want <strong>Intellisense</strong> support when writing App.config sections or XML configuration files for components like NHibernate, log4net, or Unity. What options do I have to get Visual Studio to find these files and load Intellisense?</p>
<p>(Assume we have the schema file.)</p>
http://stackoverflow.com/questions/28637/is-datetime-now-the-best-way-to-measure-a-functions-performance/39798#397984Answer by ajmastrean for Is DateTime.Now the best way to measure a function's performance?ajmastrean2008-09-02T15:25:41Z2009-11-30T16:47:33Z<p>It's useful to push your benchmarking code into a utility class/method. The <code>StopWatch</code> class does not need to be <code>Disposed</code> or <code>Stopped</code> on error. So, the simplest code to <em>time</em> some <em>action</em> is</p>
<pre><code>public partial class With
{
public static long Benchmark(Action action)
{
var stopwatch = Stopwatch.StartNew();
action();
stopwatch.Stop();
return stopwatch.ElapsedMilliseconds;
}
}
</code></pre>
<p>Sample calling code</p>
<pre><code>public void Execute(Action action)
{
var time = With.Benchmark(action);
log.DebugFormat(“Did action in {0} ms.”, time);
}
</code></pre>
<p>Here is the extension method version</p>
<pre><code>public static class Extensions
{
public static long Benchmark(this Action action)
{
return With.Benchmark(action);
}
}
</code></pre>
<p>And sample calling code</p>
<pre><code>public void Execute(Action action)
{
var time = action.Benchmark()
log.DebugFormat(“Did action in {0} ms.”, time);
}
</code></pre>
http://stackoverflow.com/questions/232848/wrapping-stopwatch-timing-with-a-delegate-or-lambda/1820942#18209421Answer by ajmastrean for Wrapping StopWatch timing with a delegate or lambda?ajmastrean2009-11-30T16:44:20Z2009-11-30T16:44:20Z<p>The <code>StopWatch</code> class does not need to be <code>Disposed</code> or <code>Stopped</code> on error. So, the simplest code to <em>time</em> some <em>action</em> is</p>
<pre><code>public partial class With
{
public static long Benchmark(Action action)
{
var stopwatch = Stopwatch.StartNew();
action();
stopwatch.Stop();
return stopwatch.ElapsedMilliseconds;
}
}
</code></pre>
<p>Sample calling code</p>
<pre><code>public void Execute(Action action)
{
var time = With.Benchmark(action);
log.DebugFormat(“Did action in {0} ms.”, time);
}
</code></pre>
<p>I don't like the idea of including the iterations into the <code>StopWatch</code> code. You can always create another method or extension that handles executing <code>N</code> iterations.</p>
<pre><code>public partial class With
{
public static void Iterations(int n, Action action)
{
for(int count = 0; count < n; count++)
action();
}
}
</code></pre>
<p>Sample calling code</p>
<pre><code>public void Execute(Action action, int n)
{
var time = With.Benchmark(With.Iterations(n, action));
log.DebugFormat(“Did action {0} times in {1} ms.”, n, time);
}
</code></pre>
<p>Here are the extension method versions</p>
<pre><code>public static class Extensions
{
public static long Benchmark(this Action action)
{
return With.Benchmark(action);
}
public static Action Iterations(this Action action, int n)
{
return () => With.Iterations(n, action);
}
}
</code></pre>
<p>And sample calling code</p>
<pre><code>public void Execute(Action action, int n)
{
var time = action.Iterations(n).Benchmark()
log.DebugFormat(“Did action {0} times in {1} ms.”, n, time);
}
</code></pre>
<p>I tested the static methods and extension methods (combining iterations and benchmark) and the delta of expected execution time and real execution time is <= 1 ms.</p>
http://stackoverflow.com/questions/583813/i-need-an-evc-data-type-equivalent-to-int640I need an eVC++ data type equivalent to __int64ajmastrean2009-02-24T22:04:23Z2009-09-09T14:35:12Z
<p>Is there a data type in <a href="http://www.google.com/search?q=embedded%2Bvisual%2Bc%2B%2B" rel="nofollow">eVC++</a> that is the equivalent of <a href="http://msdn.microsoft.com/en-us/library/s3f49ktz%28VS.80%29.aspx" rel="nofollow"><code>__int64</code></a>? None of the aliases compile. And I cannot find any of the long types in <code>Math.h</code>.</p>
<p>A third party library would also be acceptable.</p>
http://stackoverflow.com/questions/457705/how-do-i-get-visual-studio-to-generate-code-using-system-types-int32-instead-of2How do I get Visual Studio to generate code using System types (Int32) instead of built-in aliases (int)ajmastrean2009-01-19T14:18:37Z2009-09-04T13:45:05Z
<p>Can I get Visual Studio to transform the <a href="http://msdn.microsoft.com/en-us/library/ya5y69ds.aspx" rel="nofollow">built-in aliases</a> into the System types? For example, if I define the following interface</p>
<pre><code>public interface IExample
{
Int32 DoWork(String input);
}
</code></pre>
<p>and use VS to automatically generate the interface, I get the built-in types.</p>
<pre><code>public class Demo : IExample
{
public int DoWork(string input) { }
}
</code></pre>
<p>I want those to automatically change to the System types</p>
<pre><code>public class Demo : IExample
{
public Int32 DoWork(String input) { }
}
</code></pre>
<p>I'm not looking for a full installable solution, just a starting point. Can I write a script in VS that's hooked to text completion or on-save? Should I write an add-on that has a context menu item for projects - 'Convert aliases to System types'?</p>
<p><hr /></p>
<p><em>Note: I prefer the System types because they are formatted by VS like other types. Built-in aliases are formatted like keywords. Also, it's a coding style guideline at my current job.</em></p>
<p><em>Update: It's clear from MS that existing VS code-generation will always produce the built-in aliases.</em></p>
http://stackoverflow.com/questions/1266855/design-a-data-model-to-flat-file-transformation-delegates-or-inheritance0Design a data model to flat file transformation... delegates or inheritance?ajmastrean2009-08-12T15:16:39Z2009-08-13T19:35:22Z
<p>I have a maintenance application that has to turn enterprise data (from various databases/tables) into flat files, each in a specific format, for consumption by a legacy application. I've got data models like</p>
<pre><code>public class StatusCode
{
public String Id { get; set; }
public Char Level { get; set; }
public String Description { get; set; }
}
</code></pre>
<p>I will select some subset or all of these records from the data source. And I need to map each entity to one line of the file, which may require adjusting the data (padding, transforming, or handling <code>null</code>).</p>
<pre><code>public delegate String MapEntity<T>(T entity);
public MapEntity<StatusCode> MapStatusCode = delegate(StatusCode entity)
{
return String.Format("{0},{1},{2}",
entity.Id.PadLeft(3, '0'),
entity.Level == 'S' ? 0 : 1,
entity.Description ?? "-");
}
</code></pre>
<p>The question is, how do I write the transformation classes? Do I provide a "DefaultFileCreator" that takes a mapping delegate?</p>
<pre><code>public interface IFileCreator
{
Byte[] Create<T>(MapEntity<T> map, IEnumerable<T> entities);
}
public class DefaultFileCreator : IFileCreator
{
public Byte[] Create<T>(MapEntity<T> map, IEnumerable<T> entities)
{
StringBuilder sb = new StringBuilder();
foreach (T entity in entities)
sb.AppendLine(map(entity));
return Encoding.Default.GetBytes(sb.ToString());
}
}
...
fileCreator.Create(MapStatusCode, repository<StatusCode>.FindAll());
...
</code></pre>
<p>With this solution, I'm concerned about where and in what scope I should keep the mapping delegates. And how I'm going to call them without knowing <code>T</code> (if I ever need to).</p>
<p>Or, do I change the interface and require the mapping in the concrete classes?</p>
<pre><code>public interface IFileCreator<T>
{
Byte[] Create(IEnumerable<T> entities);
}
public abstract class FileCreator : IFileCreator<T>
{
protected abstract String Map(T entity);
public Byte[] Create(IEnumerable<T> entities)
{
StringBuilder sb = new StringBuilder();
foreach (T entity in entities)
sb.AppendLine(Map(entity));
return Encoding.Default.GetBytes(sb.ToString());
}
}
public class StatusCodeFile : FileCreator<StatusCode>
{
public override String Map(T entity)
{
return String.Format("{0},{1},{2}",
entity.Id.PadLeft(3, '0'),
entity.Level == 'S' ? 0 : 1,
entity.Description ?? "-");
}
}
</code></pre>
<p>This solution explodes in concrete classes, but they're as thin as the mapping delegates. And I feel more comfortable working with <code>IFileCreator<T></code> and a factory. (again, only if necessary).</p>
<p>I'm assuming some base class is useful as the <code>StringBuilder</code> loop and <code>Byte[]</code> encoding are straightforward. Should the concrete class set a delegate property in the base class (rather than calling an abstract method)? Should I keep the type parameter on the method (and how would that affect the base/concrete classes)?</p>
<p>I'm up for any solution. My main goal is ease of maintenance. I have 12 models/files right now and this may increase up to 21. I may have a requirement to insert arbitrary header/footer lines in any file (which is why I like the overrideable base class method, Map).</p>
http://stackoverflow.com/questions/1266855/design-a-data-model-to-flat-file-transformation-delegates-or-inheritance/1274124#12741240Answer by ajmastrean for Design a data model to flat file transformation... delegates or inheritance?ajmastrean2009-08-13T19:35:22Z2009-08-13T19:35:22Z<p>Now that I've written a few of the transformations, I'm leaning towards the mapping-per-class approach,. I have to be able to run unit tests against faked models to ensure the files are built properly (testing them against known good sample files).</p>
<p>I've been making the mapping-delegates private to the "workflow" class they belong in (one "workflow" per model/file). I'd have to make them public to unit test them, or output the intermediate file content (the workflow saves the completed files to a data store).</p>
<p>The mapping-per-class seems a lot more testable and decomposable.</p>
http://stackoverflow.com/questions/1046632/binding-query-parameters-by-name-with-odp-net/1196449#11964491Answer by ajmastrean for Binding query parameters by name with ODP.NETajmastrean2009-07-28T20:09:25Z2009-07-28T20:09:25Z<p>Use indirection and inheritance! If you're performing data access through an abstract Database class, require the Database implementation handle parameter binding.</p>
<pre><code>public abstract class Database
{
private readonly DbProviderFactory factory;
protected Database(DbProviderFactory factory)
{
this.factory = factory;
}
public virtual DbCommand CreateCommand(String commandText)
{
return CreateCommand(CommandType.Text, commandText);
}
public virtual DbCommand CreateCommand(CommandType commandType, String commandText)
{
DbCommand command = factory.CreateCommand();
command.CommandType = commandType;
command.Text = commandText;
return command;
}
public virtual void BindParametersByName(DbCommand command)
{
}
}
</code></pre>
<p>And choose to create an Oracle specific implementation that overrides default command creation or provides the option to bind parameters by name.</p>
<pre><code>public class OracleDatabase : Database
{
public OracleDatabase()
: base(OracleClientFactory.Instance)
{
}
public override DbCommand CreateCommand(CommandType commandType, String commandText)
{
DbCommand command = base.CreateCommand(commandType, commandText);
BindParametersByName(command);
return command;
}
public override void BindParametersByName(DbCommand command)
{
((OracleCommand)command).BindByName = true;
}
}
</code></pre>
<p><em>Code based on the <a href="http://msdn.microsoft.com/en-us/library/dd203144.aspx" rel="nofollow">Data Access Application Block</a> in the <a href="http://msdn.microsoft.com/en-us/library/cc467894.aspx" rel="nofollow">Enterprise Library</a>.</em></p>
http://stackoverflow.com/questions/1193066/how-to-write-a-net-application-that-works-with-both-sqlserver-and-oracle-now-th/1194228#11942280Answer by ajmastrean for How to write a .Net application that works with both SqlServer and Oracle (now that System.Data.OracleClient is deprecated)ajmastrean2009-07-28T13:51:06Z2009-07-28T13:51:06Z<p>In my experience, you cannot simply deploy the ODP.NET data provider DLL. Oracle requires a Home installation for anything more than the default configuration (for instance, we use LDAP name resolution, requiring an LDAP.ora file in a special Home path).</p>
<p>However, ODP.NET implements the ADO.NET 2.0 standards just fine (DbProviderFactory, etc). And I have programmed against the base classes (DbConnection, DbCommand, etc) without any need for the specific classes for some time at my company.</p>
<p>My suggestion for making this data access work is to use/follow the guidance in the <a href="http://msdn.microsoft.com/en-us/library/dd203099.aspx" rel="nofollow">Entlib</a> or use <a href="http://www.castleproject.org/activerecord/index.html" rel="nofollow">NHibernate</a>.</p>
<p>If you have a logistics or IT problem installing ODP.NET or getting it to your customer/client, I suggest you talk to your IT people and Oracle about solutions for that.</p>
http://stackoverflow.com/questions/465825/how-to-deserialize-an-xml-doc-with-a-prefixed-namespace-but-no-ns-prefixed-elemen0How to deserialize an XML doc with a prefixed namespace but no ns-prefixed elements?ajmastrean2009-01-21T15:50:45Z2009-07-22T03:37:51Z
<p>I have an XML document from an external source. </p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<ns0:Info xmlns:ns0="http://www.ZomboCorp.com/">
<Name>Anthony</Name>
<Job>Developer</Job>
</ns0:Info>
</code></pre>
<p>I need to deserialize it into an object like this.</p>
<pre><code>public class Info
{
public String Name { get; set; }
public String Job { get; set; }
}
</code></pre>
<p>Used as is, the <code>Serializer</code> throws an <code>InvalidOperationException</code></p>
<blockquote>
<p><code><Info xmlns='<a href="http://www.ZomboCorp.com/" rel="nofollow">http://www.ZomboCorp.com/</a>'></code> was not expected.</p>
</blockquote>
<p>If I add <code>[XmlElement(Namespace = "http://www.ZomboCorp.com/")]</code> to the class definition, the <code>Serializer</code> returns a new <code>Info</code> object with null properties.</p>
http://stackoverflow.com/questions/953212/lfu-cache-in-c/953246#9532465Answer by ajmastrean for LFU Cache in C#?ajmastrean2009-06-04T21:36:15Z2009-06-19T13:39:50Z<p>There is no such set <em>in the framework</em> as of .NET 3.5. <a href="http://ayende.com/" rel="nofollow">Ayende</a> has created a <a href="http://ayende.com/Blog/archive/2008/12/18/dropping-data-structures-into-the-pit-of-success.aspx" rel="nofollow">Least Recently Used</a> set. It may be a good start (<a href="http://rhino-tools.svn.sourceforge.net/viewvc/rhino-tools/trunk/esb/Rhino.ServiceBus/DataStructures/LeastRecentlyUsedSet.cs?revision=1800&view=markup" rel="nofollow">code</a>).</p>
http://stackoverflow.com/questions/975545/if-create-cant-instantiate-should-it-return-empty-object-null-or-throw-an/975684#9756841Answer by ajmastrean for If .Create() can't instantiate, should it return empty object, null, or throw an exception?ajmastrean2009-06-10T13:41:17Z2009-06-10T13:41:17Z<p>Your sample code calls a "try load from DB" method and the Create convention looks a lot like a <a href="http://www.castleproject.org/activerecord/index.html" rel="nofollow">Castle ActiveRecord</a> object. Why not separate the Get/Create database operation, allow the framework to do the work and rely on their conventions?</p>
<pre><code>[ActiveRecord("Forms")]
public class SmartForm : Item
{
[PrimaryKey("Id")]
public string IdCode { get; set; }
[Property]
public string Title { get; set; }
[Property]
public string Description { get; set; }
[Property]
public int LabelWidth { get; set; }
}
</code></pre>
<p>You get/create instances like this</p>
<pre><code>SmartForm entity = ActiveRecordMediator<SmartForm>.Find(1);
SmartForm otherEntity = ActiveRecordMediator<SmartForm>.FindFirst(/* criteria */);
</code></pre>
<p>There are a lot of other methods available for finding instances. I think you'll find that ActiveRecord's <a href="http://api.castleproject.org/html/M%5FCastle%5FActiveRecord%5FActiveRecordBase%5F1%5FFind.htm" rel="nofollow">defaults</a> <a href="http://api.castleproject.org/html/M%5FCastle%5FActiveRecord%5FActiveRecordBase%5F1%5FFindAll.htm" rel="nofollow">regarding</a> <a href="http://api.castleproject.org/html/M%5FCastle%5FActiveRecord%5FActiveRecordBase%5F1%5FFindFirst%5F1.htm" rel="nofollow">throwing</a> <a href="http://api.castleproject.org/html/M%5FCastle%5FActiveRecord%5FActiveRecordBase%5F1%5FFindOne.htm" rel="nofollow">exceptions</a>, returning null, or in the case of collections, an empty collection, are very consistent and well implemented.</p>
http://stackoverflow.com/questions/1847973/exposing-3rd-party-controls-to-the-ui-automation-frameworkComment by ajmastrean on Exposing 3rd-party controls to the UI Automation framework.ajmastrean2009-12-04T19:15:02Z2009-12-04T19:15:02Z1. Whose 3rd-party controls are you using?
2. What technology is the application (WPF, ASP.NET, WinForms)?
3. What are you using to perform UI Automation (White, Coded UI Tests)?http://stackoverflow.com/questions/1511608/how-to-create-a-deploy-package-for-codedui-test-recorded-in-visual-studio-2010Comment by ajmastrean on How to create a deploy package for "CodedUI Test" recorded in Visual Studio 2010 beta ajmastrean2009-12-04T18:47:01Z2009-12-04T18:47:01ZUnless I don't understand what you're asking by "deployment package", I believe my updated answer actually answers your question (if so, please select it).http://stackoverflow.com/questions/1842974/unity-fatal-execution-engine-error-when-resolving-a-timespan/1843349#1843349Comment by ajmastrean on Unity: Fatal Execution Engine Error when resolving a TimeSpanajmastrean2009-12-04T15:20:14Z2009-12-04T15:20:14ZI performed <code>container.RegisterInstance<TimeSpan>(TimeSpan.FromSeconds(10));</code> and that resolves fine.http://stackoverflow.com/questions/1842974/unity-fatal-execution-engine-error-when-resolving-a-timespanComment by ajmastrean on Unity: Fatal Execution Engine Error when resolving a TimeSpanajmastrean2009-12-03T22:08:23Z2009-12-03T22:08:23ZThis also occurs on other structs, like DateTime.http://stackoverflow.com/questions/1842974/unity-fatal-execution-engine-error-when-resolving-a-timespanComment by ajmastrean on Unity: Fatal Execution Engine Error when resolving a TimeSpanajmastrean2009-12-03T22:05:20Z2009-12-03T22:05:20ZI know Unity has some default ctor selection rules, but I should at least be seeing a Unity exception.http://stackoverflow.com/questions/350377/deploy-an-app-config-based-on-build-configuration/1838698#1838698Comment by ajmastrean on Deploy an app.config based on build configurationajmastrean2009-12-03T15:23:48Z2009-12-03T15:23:48ZJames, you're right. At this point, we've outgrown the capabilities (and sensibilities) of using the csproj file.http://stackoverflow.com/questions/41792/instance-constructor-sets-a-static-member-is-it-thread-safe/41820#41820Comment by ajmastrean on Instance constructor sets a static member, is it thread safe?ajmastrean2009-12-01T14:08:13Z2009-12-01T14:08:13ZDecrementing the counter would result in numbers being handed out twice. I think the intent of the original programmer was to maintain a 'total' count 'at the time of creation'. The count does not appear to be used to track anything regarding 'current instances'.http://stackoverflow.com/questions/41792/instance-constructor-sets-a-static-member-is-it-thread-safe/41801#41801Comment by ajmastrean on Instance constructor sets a static member, is it thread safe?ajmastrean2009-12-01T14:06:05Z2009-12-01T14:06:05ZThe 'lock' is useless inside the constructor? I need to lock access to the static 'counter' in a static method or else I can't be sure who else is reading/writing it elsewhere.http://stackoverflow.com/questions/296251/create-an-object-knowing-only-the-class-nameComment by ajmastrean on Create an object knowing only the class name?ajmastrean2009-12-01T14:02:56Z2009-12-01T14:02:56ZI could just use an IoC container, deal with long names, and get object creation done for me!http://stackoverflow.com/questions/1640392/uid-name-labels-in-silverlight-for-unit-testingComment by ajmastrean on UID/name labels in silverlight for unit testingajmastrean2009-11-24T21:09:54Z2009-11-24T21:09:54ZMy first suggestion is to replace UI Spy with Visual UIA Verify. I'll have some help later (I'm automating a ListBox in WPF, but the source is a custom ViewModel).http://stackoverflow.com/questions/1393744/nhibernate-and-db-notificationsComment by ajmastrean on Nhibernate and db notificationsajmastrean2009-09-08T15:04:46Z2009-09-08T15:04:46ZYou'll need to be more specific about the source of the changes you want to listen to. NHibernate can listen to changes from it's own ISessionFactory, but not from any process changing the database.http://stackoverflow.com/questions/457705/how-do-i-get-visual-studio-to-generate-code-using-system-types-int32-instead-of/1379372#1379372Comment by ajmastrean on How do I get Visual Studio to generate code using System types (Int32) instead of built-in aliases (int)ajmastrean2009-09-04T19:38:08Z2009-09-04T19:38:08ZI'm under no duress to meet these requirements. But I am interested to know if they're attainable.
I'm surprised at the negative responses toward System types!http://stackoverflow.com/questions/457705/how-do-i-get-visual-studio-to-generate-code-using-system-types-int32-instead-of/1379372#1379372Comment by ajmastrean on How do I get Visual Studio to generate code using System types (Int32) instead of built-in aliases (int)ajmastrean2009-09-04T18:45:31Z2009-09-04T18:45:31Z(1) Capitalization of types is PascalCase. The System types meet this requirement. The aliases do not.
(2) When customizing formatting (changing color scheme), the System types adhere to rules applied to the System types. The built-in types do not.http://stackoverflow.com/questions/1266855/design-a-data-model-to-flat-file-transformation-delegates-or-inheritance/1274124#1274124Comment by ajmastrean on Design a data model to flat file transformation... delegates or inheritance?ajmastrean2009-09-04T13:33:45Z2009-09-04T13:33:45ZI'm also considering overriding an abstract property in each concrete class, MapEntity (delegate). Same effect as overriding a method Map(T). Different look.http://stackoverflow.com/questions/1379137/copy-records-from-two-database-in-sqliteComment by ajmastrean on Copy records from two database in sqliteajmastrean2009-09-04T13:14:01Z2009-09-04T13:14:01ZTo what destination are you copying the records?