User Nathan W - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T03:38:44Z http://stackoverflow.com/feeds/user/6335 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1786477/change-image-using-trigger-wpf-mvvm 0 Change image using trigger WPF MVVM Nathan W 2009-11-23T22:24:07Z 2009-11-23T23:17:17Z <p>Hi All,</p> <p>This may be a no brainier but I just can't seem to get it to work. I have a view model that exposes a property called <em>bool NotFound</em> I would like to bind that to a trigger so that when it changes an image on my control changes.</p> <p>This is the xaml that I am using as a data template for one of my view models.</p> <pre><code>&lt;DataTemplate DataType="{x:Type local:TabFileViewModel}"&gt; &lt;StackPanel Orientation="Horizontal"&gt; &lt;Image Width="16" Height="16" Margin="3,0" Source="Image\TabFile.PNG" /&gt; &lt;TextBlock Text="{Binding Name}" ToolTip="{Binding FullPath}"/&gt; &lt;/StackPanel&gt; &lt;/DataTemplate&gt; </code></pre> <p>I would like to be able to bind the to the <em>NotFound</em> property and change the image source.</p> <p>Thanks.<br> Nathan</p> http://stackoverflow.com/questions/1786477/change-image-using-trigger-wpf-mvvm/1786744#1786744 1 Answer by Nathan W for Change image using trigger WPF MVVM Nathan W 2009-11-23T23:17:17Z 2009-11-23T23:17:17Z <p>It's all good I figured it out.</p> <pre><code>&lt;DataTemplate DataType="{x:Type local:TabFileViewModel}"&gt; &lt;StackPanel Orientation="Horizontal"&gt; &lt;Image Width="16" Height="16" Margin="3,0"&gt; &lt;Image.Style&gt; &lt;Style TargetType="{x:Type Image}"&gt; &lt;Style.Triggers&gt; &lt;DataTrigger Binding="{Binding NotFound}" Value="false"&gt; &lt;Setter Property="Source" Value="Image\TabFile.PNG"/&gt; &lt;/DataTrigger&gt; &lt;DataTrigger Binding="{Binding NotFound}" Value="true"&gt; &lt;Setter Property="Source" Value="Image\ErrorTabFile.PNG"/&gt; &lt;/DataTrigger&gt; &lt;/Style.Triggers&gt; &lt;/Style&gt; &lt;/Image.Style&gt; &lt;/Image&gt; &lt;/DataTemplate&gt; </code></pre> http://stackoverflow.com/questions/1029602/using-ioc-with-internal-objects 1 Using IoC with internal objects Nathan W 2009-06-22T21:54:10Z 2009-11-23T15:42:09Z <p>I am currently writing an open source SDK for a program that I use and I'm using an IoC container internally(NInject) to wire up all my internal dependencies. </p> <p>I have some objects that are marked as internal so that I don't crowd the public API as they are only used internally and shouldn't been seen by the user, stuff like factories and other objects. The problem that I'm having is that NInject can't create internal objects which means that I have to mark all my internal objects public which crowds up the public API.</p> <p>My question is: Is there someway to get around this problem or am I doing it all wrong?</p> <p>PS. I have thought about using InternalsVisiableTo attribute but I feel like that is a bit of a smell.</p> http://stackoverflow.com/questions/1767439/passing-data-across-appdomains-with-marshalbyrefobject 2 Passing data across appdomains with MarshalByRefObject. Nathan W 2009-11-19T23:49:47Z 2009-11-20T04:26:49Z <p>I'm having a little trouble passing some data between two .NET appdomains and I'm hoping someone on here can help me.</p> <p>Basically what I have is a main application (<strong>Main</strong>) which loads assembly <strong>A</strong> and <strong>B</strong> into it's main domain, then when I run a plugin(<strong>C</strong>) <strong>Main</strong> calls a create domain method on <strong>B</strong> which creates a new domain and loads <strong>C</strong> and a instance of <strong>B</strong> into it, so that <strong>C</strong> can only access <strong>B</strong> and not the others.</p> <p><strong>B</strong> contains a pointer to the IDispatch of <strong>Main</strong> but only it seems to get it after it is loaded into the new domain with <strong>C</strong>. What I am trying to do is send a copy of the pointer from the new domain instance of <strong>B</strong> and send it to <strong>A</strong> which is still running in the default domain.</p> <p>Just for the record I control <strong>A,B and C</strong> but not <strong>Main</strong></p> <p>Sorry if this is a bit hard to understand I tried my best to explain it. </p> <p>Code:</p> <p>In A:</p> <pre><code>public class Tunnel : MarshalByRefObject { public void SetPointer(int dispID) { IntPtr pointer = new IntPtr(dispID); } } </code></pre> <p>In B:</p> <pre><code>//Call by Main after loading plug in but after A.dll is loaded. public void CreateDomain() { AppDomain maindomain= AppDomain.CurrentDomain; tunnel = (Tunnel)maindomain.CreateInstanceAndUnwrap(typeof(Tunnel).FullName, typeof(Tunnel).FullName); AppDomain domain = base.CreateDomain(friendlyName, securityInfo, appDomainInfo); //Load assembly C (plug in) in domain. // C uses B so it loads a new instance of B into the domain also at the same time. // If I do this here it creates new instance of A but I need to use the one in // the main domain. //tunnel = (Tunnel)domain.CreateInstanceAndUnwrap(typeof(Tunnel).FullName, typeof(Tunnel).FullName); tunnel.SetPointer(//Send data from B loaded in new domain.) } </code></pre> <p>So at the end it looks something like this:</p> <p>Default Domain:</p> <ul> <li><strong>Main.dll</strong></li> <li><strong>A.dll</strong></li> <li><strong>B.dll</strong></li> </ul> <p>Plug in Domain:</p> <ul> <li><strong>B.dll</strong></li> <li><strong>C.dll</strong></li> </ul> http://stackoverflow.com/questions/1760085/get-iunkown-using-window-handle 2 Get IUnkown using window handle. Nathan W 2009-11-19T00:20:53Z 2009-11-19T04:29:59Z <p>I know this may be a long shot so forgive me as I don't really know that much about COM.</p> <p>Basically what I am trying to do is get the pointer to the IUnknown interface for a running application, the problem is the only thing I know about the app is its main window handle.</p> <p>Would this be possible?</p> http://stackoverflow.com/questions/165455/why-do-people-like-case-sensitivity 7 Why do people like case sensitivity? Nathan W 2008-10-03T02:40:08Z 2009-11-17T09:35:12Z <p>Hi all,</p> <p>Just wondering why people like case sensitivity in a programming language? I'm not trying to start a flame war just curious thats all.<br /> Personally I have never really liked it because I find my productivity goes down when ever I have tried a language that has case sensitivity, mind you I am slowly warming up/getting used to it now that I'm using C# and F# alot more then I used to.</p> <p>So why do you like it?</p> <p>Cheers </p> http://stackoverflow.com/questions/1671848/unique-key-value-collection-in-c/1671911#1671911 0 Answer by Nathan W for unique key value collection in C# Nathan W 2009-11-04T05:56:53Z 2009-11-04T05:56:53Z <p>You could do something like this:</p> <pre><code>Dictionary&lt;String, List&lt;String&gt;&gt; mapping = new Dictionary&lt;string, List&lt;string&gt;&gt;(); mapping.Add("1",new List&lt;string&gt;()); mapping["1"].Add("Machine1"); mapping["1"].Add("Machine2"); </code></pre> <p>This will give you a one to many mapping between domain and machines.</p> <p>or the <code>NameValueCollection</code> class would do the same. </p> http://stackoverflow.com/questions/1128533/bad-idea-to-have-the-same-object-have-a-different-side-effect-after-method-call 0 Bad idea to have the same object, have a different side effect after method call. Nathan W 2009-07-14T22:56:30Z 2009-10-30T19:00:02Z <p>Hi all,</p> <p>I'm having a bit of a gesign issue(again). Say I have this Buttonpad object:</p> <p><img src="http://img530.imageshack.us/img530/7513/buttonpad.jpg" alt="alt text" /></p> <p>now this object is a wrapper object over one in a com object. At the moment it has a method on it called <em>CreateInto(IComObject)</em>. Now to make a new button pad in the Com Object.</p> <p>You do:</p> <pre><code> ButtonPad pad = new ButtonPad(); pad.Title = "Hello"; // Set some more properties. pad.CreateInto(Cominstance); </code></pre> <p>The createinfo method will excute the right commands to buid the button pad in the com object. After it has been created it any calls against it are foward to the underlying object for change so:</p> <pre><code>pad.Title = "New title"; </code></pre> <p>will call the com object to set the title and also set the internal title variable.</p> <p>Basically any calls before the CreateInfo method only affect the .NET object anything after has the side effect of calling the com object also. I'm not very good at sequence diagrams but here is my attempt to explain whats going on:</p> <p><img src="http://img196.imageshack.us/img196/5885/seqa.jpg" alt="alt text" /></p> <p>This doesn't feel good to me, it feels like I'm lying to the user about what the button pad does.</p> <p>I was going to have a object called WrappedButtonPad, which is returned from CreateInto and the user could make calls against that to make changes to the Com Object, but I feel having two objects that almost do the same thing but only differ by names might be even worse.</p> <p>Are these valid designs, or am I right to be worried?</p> <p>How else would you handle a object the can create and query a com object?</p> http://stackoverflow.com/questions/872002/reading-dbase-file-without-standard-dbf-extension 0 reading dbase file without standard .dbf extension. Nathan W 2009-05-16T08:47:18Z 2009-10-23T19:00:02Z <p>I am trying to read a file which is just a dbase file but without the standard extension the file is something like:</p> <p>Test.Dat</p> <p>I am using this block of code to try and read the file:</p> <pre><code>string ConnectionString = @"Provider=Microsoft.Jet.OLEDB.4.0; Data Source=C:\Temp;Extended Properties=dBase III"; OleDbConnection dBaseConnection = new OleDbConnection(ConnectionString); dBaseConnection.Open(); OleDbDataAdapter oDataAdapter = new OleDbDataAdapter("SELECT * FROM Test", ConnectionString); DataSet oDataSet = new DataSet(); oDataAdapter.Fill(oDataSet);//I get the error right here... DataTable oDataTable = oDataSet.Tables[0]; foreach (DataRow dr in oDataTable.Rows) { Console.WriteLine(dr["Name"]); } </code></pre> <p>Of course this crashes because it can't find the dbase file called test, but if I rename the file to Test.dbf it works fine. I can't really rename the file all the time because a third party application uses it as its file format.</p> <p>Does anyone know a way to read a dbase file without a standard extension in C#.</p> <p>Thanks.</p> http://stackoverflow.com/questions/249314/what-do-you-think-of-multiline-lambdas-in-vb-10 4 What do you think of multiline lambdas in VB 10 Nathan W 2008-10-30T04:57:38Z 2009-10-14T20:21:23Z <p>I was just watching a video on MSDN Channel 9 which can be found <a href="http://channel9.msdn.com/posts/Dan/Lucian-Wischik-and-Lisa-Feigenbaum-Whats-new-in-Visual-Basic-10/" rel="nofollow">here</a>, about some of the new features in Visual Basic 10. Now I like most of the new features, some of which have been long awaited(auto properties and Collection Initializers), one that caught my eye was the multiline lambdas like in C#. </p> <p>In the video he used an example like this:</p> <pre><code>Dim scores = {10,20,30,40,50} Dim thread as new Threading.Thread(Sub() For Each o in scores console.writeline(o) Next End Sub) </code></pre> <p>Now I like VB in all it verbosity but I'm just a bit worried that writing sub...end sub inline could get a bit messy, I can see some merit in inlining when you are writing C# when you only have to use something like c => {....} and you can cut out a lot of code.</p> <p>What are your throughts of multiline lambdas in VB?</p> <p>Would you find them useful and where?</p> http://stackoverflow.com/questions/1424152/generic-type-variable-restrictions-and-interfaces/1424263#1424263 2 Answer by Nathan W for generic type variable restrictions and interfaces Nathan W 2009-09-14T22:43:06Z 2009-09-14T22:48:30Z <p>You could try something like this:</p> <pre><code>public TResult Execute&lt;TResult&gt;(...) { if (typeof(TResult) is MyBaseClass) { Type mytype = typeof(TResult); MethodInfo method = typeof({TypewhereFoo&lt;&gt;IsDeclared}).GetMethod("Foo"); MethodInfo generic = method.MakeGenericMethod(myType); return (TResult)generic.Invoke(this, null); } else { // Throw here } } </code></pre> http://stackoverflow.com/questions/1396767/how-to-create-custom-collection-with-linq-extensions/1396822#1396822 0 Answer by Nathan W for How to create custom collection with Linq extensions? Nathan W 2009-09-08T23:13:05Z 2009-09-08T23:18:25Z <p>This is how you would expose the Enumerator for you custom collection.</p> <pre><code>using System.Collections.Generic; using System.Linq; namespace MyNamespace { public class Program { public static void Main(string[] args) { MyCollection col = new MyCollection(); col.Where(c =&gt; //some condition); } } public class MyCollection : IList&lt;string&gt; { public List&lt;string&gt; innerlist = new List&lt;string&gt;(); public IEnumerator&lt;string&gt; GetEnumerator() { return this.innerlist.GetEnumerator(); } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { return this.GetEnumerator(); } } } </code></pre> <p>If you need your own foreach: <a href="http://blogs.msdn.com/ericwhite/archive/2009/04/08/why-i-don-t-use-the-foreach-extension-method.aspx" rel="nofollow">http://blogs.msdn.com/ericwhite/archive/2009/04/08/why-i-don-t-use-the-foreach-extension-method.aspx</a></p> http://stackoverflow.com/questions/1108130/wrapper-library-builder-vs-factory-with-poco 0 Wrapper library - Builder vs Factory with POCO Nathan W 2009-07-10T07:12:13Z 2009-09-08T07:00:03Z <p>I'm stuck between a rock and a hard place at the moment trying to decided on a good API layout for a .NET COM wrapper project I am working on. This is mainly a design problem and what would work better.</p> <p>So I have this COM point object:</p> <pre><code>public class COMPoint { internal COMPoint(MyComObject comobject) {} public SomeCollection Nodes {get; set;} } </code></pre> <p>now in order to make point object in my COM object I need to call a few string commands, and this is where I'm having trouble deciding where to point this.</p> <p>Now I thought about using a POCO that has properties on it then pass it into some kind of factory method, something like this;</p> <pre><code>public class Point { public SomeCollection Nodes {get;set;} } public class GeometryFactory { public GeometryFactory(MyComObject comobject) {} public CreateCOMPointFrom(Point point) { // Do COM work here and return new COMPoint. } } </code></pre> <p>or using a builder pattern, something like:</p> <pre><code>public class COMPoint { internal COMPoint(MyComObject comobject) {} public SomeCollection Nodes {get; set;} public class Builder { public Builder(MyComObject comobject) {} public SomeCollection Nodes {get; set;} public COMPoint Create() { // Do COM work here and return new COMPoint. } } } </code></pre> <p>or a combination of both:</p> <pre><code>public class COMPoint { internal COMPoint(MyComObject comobject) {} public SomeCollection Nodes {get; set;} public class Builder { public Builder(MyComObject comobject) {} public SomeCollection Nodes {get; set;} public COMPoint Create() { // Do COM work here and return new COMPoint. } public COMPoint CreateFrom(Point point) { // Set builder properties and call. this.Create(); } } } </code></pre> <p>The idea behind using a POCO was so that people could create a point object using the good old</p> <pre><code>Point point = new Point() point.Nodes &lt;- Set nodes </code></pre> <p>pass it around their code and then construct it and get back the one that goes back to the COM object.</p> <p>Do you think any of these patterns have any credit in this situation?</p> <p>I'm worried that if I have two different point objects it might confuse the user but then again the builder pattern isn't really that friendly either hmm what to do.</p> <p>Of course the point object is the simplest object I have to create, there are a lot more objects that are a bit more complicated.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1392017/calling-a-variable-from-another-class-c/1392026#1392026 5 Answer by Nathan W for Calling a Variable from another Class (C#) Nathan W 2009-09-08T04:51:54Z 2009-09-08T04:51:54Z <p>That would just be:</p> <pre><code> Console.WriteLine(Variables.name); </code></pre> <p>and it needs to be public also:</p> <pre><code>public class Variables { public static string name = ""; } </code></pre> http://stackoverflow.com/questions/1387855/cross-tab-query-with-boolean-fields-as-row-headers 0 Cross tab query with boolean fields as row headers. Nathan W 2009-09-07T06:38:30Z 2009-09-07T08:54:18Z <p>I currently have a table structure that looks something like this(some details omitted):</p> <pre><code> ColumnName || Type Date_Of_Job DateTime Reparied_Service Boolean Disconnect_Service Boolean Relayed_Service Boolean Reparied_Stopcock Boolean Replaced_Stopcock Boolean TPFNR_Repaired Boolean TPFNR_Replaced Boolean TPFNR_Capped Boolean Poor_Pressure_Tested Boolean Flow_Test Boolean Meter_replaced Boolean </code></pre> <p>What I want to be able to show is a cross tab query with the month(*Date_Of_Job*) as the column headers and the different types of jobs as the row headers with the count of each job for that month. </p> <p>So something like this:</p> <pre><code>==Job Type===========01=====02=====03 etc Reparied_Service 5 20 30 Disconnect_Service 15 45 9 Relayed_Service 18 7 6 Reparied_Stopcock 18 Replaced_Stopcock 20 etc </code></pre> <p>The problem that I have is that the each job type is stored as a boolean column because each record can included multiple job type. For example you can log a *Reparied_Stopcock* job as well as a *Flow_Test* for the one record.</p> <p>Does anyone know how I can do this in access or MS SQL, it doesn't really matter which one.</p> http://stackoverflow.com/questions/1376496/call-method-in-already-running-net-assembly-from-different-app 0 Call method in already running .NET assembly from different app. Nathan W 2009-09-03T23:29:00Z 2009-09-04T02:18:10Z <p>I don't know if you can do this, but basicly I need to be able to call a method in already running .NET process from a different assembly that don't share the same process.</p> <p>Basically what I have is a application and when it calls a .net method it loads the assembly that contains that method into into a appdomian and then calls the method. </p> <p>I need to get from the loaded assembly into another process and call a supplied method.</p> <p>I know this might not help but this is picture of what happens: <img src="http://img527.imageshack.us/img527/6960/probt.jpg" alt="alt text" /></p> <p>Sorry for the low quality.</p> http://stackoverflow.com/questions/1367751/update-primary-key-value-using-entity-framework/1368011#1368011 2 Answer by Nathan W for Update primary key value using entity framework Nathan W 2009-09-02T14:22:19Z 2009-09-03T01:41:02Z <p>You can't and for good reason. See KM comments.</p> <p>One thing I say you could do is have two tables one with anonymous data and one that stores the the real user data after they log in.</p> <p>Or your could (not tested or ever done by me) is have this kind of table layout:</p> <pre><code>---Customers---- AutoNumber PK &lt;- This links to all other tables in your database, and does NOT change. CustomerID &lt;- This can change. CustomerType &lt;- Anonymous or logged in. </code></pre> <p>And when they log in you change the CustomerType and CustomerID to what you need.</p> <p>So your query could look like this:</p> <pre><code>Dim customer As Customer = (From c In db.Customer _ Where c.CustomerID = {Some temp ID} _ AndAlso c. CustomerType = "Anonymous").FirstOrDefault // After user logs in. customer.CustomerID = {Make a new user ID here} customer.CustomerType = "LoggedIn" {or what ever} db.SaveChanges() </code></pre> <p>Note that the autonumber primary key <strong>never</strong> changes. This is so that any tables that you have in a relationship with the Customers table still work and don't have to do cascading updates on the primary key <em>(which is like stabbing yourself in the eye with a pencil).</em></p> http://stackoverflow.com/questions/1366523/adding-items-to-a-collection/1366698#1366698 2 Answer by Nathan W for Adding items to a collection Nathan W 2009-09-02T09:34:38Z 2009-09-02T09:34:38Z <p>The reason that you are getting this error is because bo.UsergroupsBookingNotifications is a collection of UsergroupsBookingNotifications and you are trying to add a Usergroup object to it.</p> <p>This:</p> <pre><code>_entities.UsergroupSet.Where(ug =&gt; ug.UsergroupID == _currentUsergroupID).First(); </code></pre> <p>will return a Usergroup object.</p> <p>With out seeing the rest of you object model it's a bit hard to help but this might be what you are looking for:</p> <pre><code>for (int i = 0; i &lt; NotificationUsergroups.Count(); i++) { _currentUsergroupID = NotificationUsergroups[i]; // Make a new UsergroupsBookingNotifications object UsergroupsBookingNotifications notify = new UsergroupsBookingNotifications(); // Add the bookobject and usergroup notify.BookingObject = bo; notify.Usergroup = _entities.UsergroupSet.Where(ug =&gt; ug.UsergroupID == _currentUsergroupID).First(); // Add the collection. bo.UsergroupsBookingNotifications.Add(notify); } </code></pre> <p>Like I said it's a bit hard to help without some more info, but that might get you started.</p> http://stackoverflow.com/questions/1364980/unique-naming-of-photos-guid-vs-sequential-number 2 Unique naming of photos - GUID vs sequential number Nathan W 2009-09-01T22:33:01Z 2009-09-02T02:34:49Z <p>A while ago I wrote a plan management system for the council that I work for, which lets us store all the old and new plans in digital format with information associated with via a access database(I didn't know MS SQL server at the time). </p> <p>Each plan has a unique plan ID which is just a auto incrementing int (primary key), a title and the path to the picture. At the time, I just used a GUID as the picture name to insure uniqueness and I'm just wondering if this was a bad move. </p> <p>All the pictures are moved into one central folder at the time of import so there names have to be unqiue. </p> <p>I was thinking that maybe I should have just used the auto incrementing int as the name of the file rather the long and not very user/debug friendly GUID.</p> <p>What would you do? </p> <p>EDIT: Sorry forgot to mention that the files are really only known by the software, after the import the program creates a shortcut to the file in the folder it was imported from with the name of the original file. I did this so that people could still get to the document without having to go through the program and so old hyperlinks etc worked. </p> http://stackoverflow.com/questions/1026389/static-factory-method-gateway-to-internal-factory-code-smell 2 Static factory method gateway to internal factory - code smell? Nathan W 2009-06-22T10:05:50Z 2009-09-02T00:14:17Z <p>Say I had a class that has a static factory method, like this:</p> <pre><code> public class Table { public static Table OpenTable(string path) { ITableFactory fac = IoC.Resolve&lt;ITableFactory&gt;(); return fac.OpenTable(path); } } </code></pre> <p>and a factory class that looks like this:</p> <pre><code>internal class TableFactory : ITableFactory { internal Table OpenTable(string path) { //Check the path //Do some other stuff //return a new Table. } } </code></pre> <p>Does this code smell bad to you?</p> <p>EDIT: Another question: Is it a good idea to have a static method on the type that just forwards calls to the factory?</p> <p><em>Some background:</em> I used to have the TableFactory as public and make the user create a new one every time they needed to open a table but it felt like a long hall just to open a table. So I thought that I would make a static factory method on the Table class and make the factory class internal and just resolve it using IoC. </p> http://stackoverflow.com/questions/1052813/managing-internal-dependencies 1 Managing internal dependencies Nathan W 2009-06-27T13:17:27Z 2009-09-02T00:13:35Z <p>I'm having a bit of trouble figuring out how to manage the internal dependencies that I have in a SDK I'm developing, for some reason everything I try just seems to be hard to work with.</p> <p>Say I have these classes:</p> <pre><code>class Table { Table(string name,IQueryProvider provider, IComObject comobject) {} } class TableFactory { Table BuildTable(name) &lt;- builds a table object. } </code></pre> <p>the problem that I'm having is that BuildTable() method has to create a IQueryProvider and a IComObject and pass the name down. I have implemented what I hope(if I understand it correctly) the service locater pattern but if I use something like this:</p> <pre><code>BuildTable(string name) { IQueryProvider provider = ServiceLocator.GetInstance&lt;IQueryProvider&gt;(); IComObject comobject = ServiceLocator.GetInstance&lt;IComObject&gt;(); Table tab = new Table(name,provider,comobject); return tab; } </code></pre> <p>It now means that I have to have both IQueryProvider and IComObject in the ServiceLocator which makes my dependencies hard to see and test. So I created a dependency factory to create different types of objects and factories something like this:</p> <pre><code>class DependencyFactory { Table BuildTable(string name) { //call other BuildMethods to create objects. //return new Table. } //Other Build methods for things like IQueryProvider, IComObject. } </code></pre> <p>then I only have to register DependencyFactory in my service locater and then just call build methods.</p> <p>Does any of this smell bad to you?</p> <p>Is my first BuildTable method ok, or am I right being concerned with it.</p> http://stackoverflow.com/questions/1095390/the-field-must-have-a-documentation-header-style-cop-code-smell 2 The field must have a documentation header - Style Cop - Code smell? Nathan W 2009-07-07T23:37:37Z 2009-09-01T23:56:20Z <p>I was just running style cop against some of my code and got a few:</p> <pre><code>SA1600: The field must have a documentation header. </code></pre> <p>Now don't get me wrong I like style cop, it's great when you work on a project with more then one person but this rule seems a bit excessive to me. Why would you want to add:</p> <pre><code> /// &lt;summary&gt; /// blah blah blah /// &lt;/summary&gt; </code></pre> <p>to the top of every variable. I'm pretty sure that I remember someone saying(Martin Fowler, Kent Beck..can't really remember ATM) that comment should say "why" not "what" and I really can't see how you can explain why on a variable. </p> <p>I also find code that has comments on every variable handle to read because all you see is fluff.</p> <p>My thoughts are if you have to explain what every variable is then you are really failing in terms of naming.</p> <p>Does anyone else find commenting variables a bit of a code smell or is it just me.</p> http://stackoverflow.com/questions/1327599/using-a-var-based-on-an-enum-in-a-where-clause-in-entity-framework-throws-an-exce/1328080#1328080 3 Answer by Nathan W for Using a var based on an enum in a Where clause in Entity Framework throws an exception. Nathan W 2009-08-25T12:48:49Z 2009-08-25T12:48:49Z <p>The problem is that the entity framework doesn't know how to eveluate your enum when it is building the T-SQL to get the int behind it. The short answer is that you have to store it in a temp variable and use that.</p> <p>Some more information can be found at:</p> <p><a href="http://gmontrone.com/post/problem-with-casting-enums-in-linq-to-entities.aspx" rel="nofollow">http://gmontrone.com/post/problem-with-casting-enums-in-linq-to-entities.aspx</a></p> <p>and</p> <p><a href="http://www.matthidinger.com/archive/2008/02/26/entity-framework-comparison-frustration-explained.aspx" rel="nofollow">http://www.matthidinger.com/archive/2008/02/26/entity-framework-comparison-frustration-explained.aspx</a></p> http://stackoverflow.com/questions/1319967/which-namespace-does-a-factory-class-belong/1319973#1319973 2 Answer by Nathan W for Which namespace does a factory class belong? Nathan W 2009-08-24T00:28:12Z 2009-08-24T00:28:12Z <p>I would say leave it in the *<em>.Loader</em> namespace as it will make it easier to find when working with your <em>IDocumentLoader</em> implementations.</p> http://stackoverflow.com/questions/1118582/exiting-the-zone-of-pain-ndepend 1 Exiting the Zone of Pain - NDepend Nathan W 2009-07-13T09:56:14Z 2009-08-23T04:00:11Z <p>Hi all,</p> <p>I was just running one of my projects through NDepend and the report put my assembly right in the corner of the zone of pain. I was just wondering if it's something that I should be worried about. </p> <p>What does the zone of pain really mean? Doesn't it mean that there is a lot of coupling and things can't change very easily.</p> <p>I recently removed a lot of interfaces and sealed a lot of classes as I don't want the user extending the API(only in some places). It's a .NET Wrapper for a com object, so there isn't much need for the user to extend anything.</p> <p>What are some good ways to get me out of the zone of pain?</p> <p>Thanks</p> http://stackoverflow.com/questions/1310862/what-is-your-entry-for-songsincode/1310953#1310953 2 Answer by Nathan W for What is your entry for #songsincode? Nathan W 2009-08-21T09:31:06Z 2009-08-21T09:31:06Z <pre><code>codeMonkey.HangAround(frontdesk); codeMonkey.Tell("You sweater look nice"); codeMonkey.Offer(soda).Bring(cup.AddIce()); codeMonkey.Likes = Fritos || Tab || MountainDew SimpleMan simpleman = SimpleMan(codeMonkey); </code></pre> <p><a href="http://www.songmeanings.net/songs/view/3530822107858620452/" rel="nofollow">Code Monkey</a></p> http://stackoverflow.com/questions/1250507/history-tables-pros-cons-and-gotchas-using-triggers-sproc-or-at-application-l 3 History tables pros, cons and gotchas - using triggers, sproc or at application level. Nathan W 2009-08-09T03:31:11Z 2009-08-21T08:50:30Z <p>I am currently playing around with the idea of having history tables for some of my tables in my database. Basically I have the main table and a copy of that table with a modified date and an action column to store what action was preformed eg Update,Delete and Insert.</p> <p>So far I can think of three different places that you can do the history table work.</p> <ul> <li>Triggers on the main table for update, insert and delete. (Database)</li> <li>Stored procedures. (Database)</li> <li>Application layer. (Application)</li> </ul> <p>My main question is, what are the pros, cons and gotchas of doing the work in each of these layers.</p> <p>One advantage I can think of by using the triggers way is that integrity is always maintained no matter what program is implmentated on top of the database.</p> http://stackoverflow.com/questions/1309276/unable-to-set-session-parameters-in-dbserversyncprovider-sync-framework 1 Unable to set session parameters in DbServerSyncProvider - Sync Framework Nathan W 2009-08-20T22:53:49Z 2009-08-20T22:53:49Z <p>Hi all,</p> <p>I am just playing around with using Microsofts Sync Framework with the entity framework and I'm having a little trouble with a few things. </p> <p>Basically I have some text boxs bound to one of my entity objects. In the save method I call end edit on the bindingsource and save the changes to the database.</p> <p>So something like this:</p> <pre><code> private void culvertBindingNavigatorSaveItem_Click(object sender, EventArgs e) { this.culvertBindingSource.EndEdit(); this.culvertcontext.SaveChanges(); } </code></pre> <p>After the record saves I can read it back from the database fine with all the new values that I set. The problem comes when I try and sync back to the main server I get this error.</p> <blockquote> <p>Unable to set session parameters in DbServerSyncProvider. Cannot obtain the value for command parameter '@p1'.</p> </blockquote> <p>Deleting works fine it's just updating and adding new records that don't seem to work. The code that I am using to sync is:</p> <pre><code>CulvertCahceSyncAgent syncAgent = new CulvertCahceSyncAgent(); SyncStatistics syncStats = syncAgent.Synchronize(); </code></pre> <p>with SyncDirection set to Bidirectional.</p> <p>Does anyone know what I am doing wrong here?</p> http://stackoverflow.com/questions/707657/picking-the-best-primary-key-numbering-system 10 Picking the best primary key + numbering system. Nathan W 2009-04-01T22:55:08Z 2009-08-14T14:43:27Z <p>Hi All,</p> <p>We are trying to come up with a numbering system for the asset system that we are creating, there has been a few heated discussions on this topic in the office so I decided to ask the experts of SO.</p> <p>Considering the database design below what would be the better option.</p> <p><img src="http://img26.imageshack.us/img26/1043/database.png" alt="alt text" /></p> <p><strong>Example 1:</strong> Using auto surrogate keys.</p> <pre><code>================= ================== Road_Number(PK) Segment_Number(PK) ================= ================== 1 1 </code></pre> <p><strong>Example 2:</strong>Using program generated PK</p> <pre><code>================= ================== Road_Number(PK) Segment_Number(PK) ================= ================== "RD00000001WCK" "00000001.1" </code></pre> <p>(the 00000001.1 means it's the first segment of the road. This increases everytime you add a new segment e.g. 00000001.2)</p> <p><strong>Example 3:</strong> Using a bit of both(adding a new column)</p> <pre><code>================== ================== ID(PK) Road_Number(UK) ID(PK) Segment_Number(UK) ================== ================== 1 "RD00000001WCK" 1 "00000001.1" </code></pre> <p>Just a bit of background information, we will be using the Road Number and Segment Number in reports and other documents, so they have to be unique. </p> <p>I have always liked keeping things simple so I prefer example 1, but I have been reading that you should not give your primary keys meaning, so now I'm thinking more along the lines of example 3. </p> <p>I am also leaning towards example 3 because if we deiced to change how our asset numbering is generated it won't have to do cascade updates on a primary key.</p> <p>What do you think we should do?</p> <p>Thanks.</p> <p>EDIT: Thanks everyone for the great answers, has help me a lot.</p> http://stackoverflow.com/questions/258055/best-way-to-do-tdd-in-express-versions-of-visual-studioeg-vb-express 5 Best way to do TDD in express versions of visual studio(eg VB Express) Nathan W 2008-11-03T07:09:07Z 2009-08-14T04:40:48Z <p>I have been looking in to doing some test driven development for one of the applications that I'm currently writing(OLE wrapper for an OLE object). The only problem is that I am using the express versions of Visual Studio(for now), at the moment I am using VB express but sometimes I use C# express. </p> <p>Is it possible to do TDD in the express versions? If so what are the bast was to go about it?</p> <p>Cheers.</p> <p>EDIT. By the looks of things I will have to buy the full visual studio so that I can do integrated TDD, hopefully there is money in the budget to buy a copy :). For now I think I will use Nunit like everyone is saying.</p> http://stackoverflow.com/questions/1767439/passing-data-across-appdomains-with-marshalbyrefobject Comment by Nathan W on Passing data across appdomains with MarshalByRefObject. Nathan W 2009-11-20T03:54:14Z 2009-11-20T03:54:14Z I'm really sorry for this, say I have two domains 1 and 2, 1 is loaded with assembly A.dll and a domain 2 is loaded with a plugin that uses A.dll, A.dll also gets loaded into domain 2 by the plugin. If I change a property in the version that domain 2 has will it be reflected in domain 1 version? http://stackoverflow.com/questions/1767439/passing-data-across-appdomains-with-marshalbyrefobject Comment by Nathan W on Passing data across appdomains with MarshalByRefObject. Nathan W 2009-11-20T03:27:42Z 2009-11-20T03:27:42Z Sorry for the confusion everyone, I have never really got into this AppDomain stuff until now. If I have two domains is it possible to have the same assembly loaded in both domains as different instances? or is that wrong? http://stackoverflow.com/questions/1767439/passing-data-across-appdomains-with-marshalbyrefobject Comment by Nathan W on Passing data across appdomains with MarshalByRefObject. Nathan W 2009-11-20T00:29:43Z 2009-11-20T00:29:43Z @Lucero B is a wrapper around a COM object. http://stackoverflow.com/questions/1671848/unique-key-value-collection-in-c/1671911#1671911 Comment by Nathan W on unique key value collection in C# Nathan W 2009-11-04T06:04:16Z 2009-11-04T06:04:16Z true, you would have to do checks. http://stackoverflow.com/questions/1641524/implement-winforms-using-wpf/1641663#1641663 Comment by Nathan W on Implement WinForms using WPF? Nathan W 2009-10-29T05:20:52Z 2009-10-29T05:20:52Z @Dan Just come to work one day with a plastic gun on your hip and say &quot;we are using WPF onwards from today, anyone have a problem with this&quot;. Making sure of course the gun is clearly visible ;) http://stackoverflow.com/questions/1641524/implement-winforms-using-wpf/1641545#1641545 Comment by Nathan W on Implement WinForms using WPF? Nathan W 2009-10-29T04:12:14Z 2009-10-29T04:12:14Z &lt;3 WPF databinding http://stackoverflow.com/questions/1569538/var-answerer-from-a-in-answerers-where-a-no-1000000-select-a-answerer-send1 Comment by Nathan W on var answerer = from a in answerers where a.no == 1000000 select a; answerer.send1dll() Nathan W 2009-10-14T23:51:58Z 2009-10-14T23:51:58Z I say again &lt;sarcasm&gt;indeed&lt;/sarcasm&gt; http://stackoverflow.com/questions/1569538/var-answerer-from-a-in-answerers-where-a-no-1000000-select-a-answerer-send1 Comment by Nathan W on var answerer = from a in answerers where a.no == 1000000 select a; answerer.send1dll() Nathan W 2009-10-14T23:40:16Z 2009-10-14T23:40:16Z @Luis What? I'm so confused :S what are you on about, are you drunk? http://stackoverflow.com/questions/1569538/var-answerer-from-a-in-answerers-where-a-no-1000000-select-a-answerer-send1 Comment by Nathan W on var answerer = from a in answerers where a.no == 1000000 select a; answerer.send1dll() Nathan W 2009-10-14T23:37:47Z 2009-10-14T23:37:47Z @Luis However if that is all you where after you should have really worded you question better and not just posted some random code which no one knows what the hell you are trying to do. http://stackoverflow.com/questions/1569538/var-answerer-from-a-in-answerers-where-a-no-1000000-select-a-answerer-send1 Comment by Nathan W on var answerer = from a in answerers where a.no == 1000000 select a; answerer.send1dll() Nathan W 2009-10-14T23:36:36Z 2009-10-14T23:36:36Z @Luis So you want to know how to send one doller to answerer 1,000,000, then you will need this: answerer. FirstOrDefault().send1dll(); http://stackoverflow.com/questions/1569538/var-answerer-from-a-in-answerers-where-a-no-1000000-select-a-answerer-send1 Comment by Nathan W on var answerer = from a in answerers where a.no == 1000000 select a; answerer.send1dll() Nathan W 2009-10-14T23:31:46Z 2009-10-14T23:31:46Z &lt;sarcasm&gt;indeed&lt;/sarcasm&gt; http://stackoverflow.com/questions/1420027/looping-rows-in-sql-server/1420033#1420033 Comment by Nathan W on Looping Rows in SQL Server Nathan W 2009-09-14T06:58:27Z 2009-09-14T06:58:27Z I read the question but he/she asked how to loop though the rows and print the values, and your answer just shows how to select results not loop or print. http://stackoverflow.com/questions/1420027/looping-rows-in-sql-server/1420033#1420033 Comment by Nathan W on Looping Rows in SQL Server Nathan W 2009-09-14T06:53:35Z 2009-09-14T06:53:35Z I'm sorry I don't see how this is useful. http://stackoverflow.com/questions/1397656/c-action-delegate-vs-explicit-delegate/1397666#1397666 Comment by Nathan W on C#: Action delegate vs explicit delegate Nathan W 2009-09-09T06:11:28Z 2009-09-09T06:11:28Z One thing that can happen is if you need to later on return some extra info with your event all you have to do is add it to your EventArgs class. Where as if you return say Action&lt;String&gt; you always have to return a string no matter what, and if you change it, it will break all your code that uses it. http://stackoverflow.com/questions/1396767/how-to-create-custom-collection-with-linq-extensions/1396774#1396774 Comment by Nathan W on How to create custom collection with Linq extensions? Nathan W 2009-09-08T23:15:55Z 2009-09-08T23:15:55Z @Mystere ForEach is an instance method, it is not a extension method. My object browser shows List&lt;T&gt; implements ForEach.