User n8wrl - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T07:30:04Zhttp://stackoverflow.com/feeds/user/37710http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1876457/how-do-you-best-offload-a-database-insert-so-a-web-response-is-returned-quicker/1876583#18765830Answer by n8wrl for How do you best offload a database insert, so a web response is returned quicker?n8wrl2009-12-09T20:17:01Z2009-12-09T20:26:37Z<p>Before I spent a lot of time on the optimization I'd be sure of where the time is going. Connections like these have significant latency overhead (check <a href="http://blogs.msdn.com/oldnewthing/archive/2006/04/07/570801.aspx" rel="nofollow">this</a> out). Just for grins, make your service a NOP and see how it performs.</p>
<p>It seems to me that the 'async-ness' needs to be on the client - it should fire off the call to your service and move on, especially since it doesn't care about the result?</p>
<p>I also suspect that if the NOP performance is good-to-tolerable on your LAN it will be a different story in the wild.</p>
http://stackoverflow.com/questions/1858430/what-was-your-favorite-assembly-language/1874058#18740581Answer by n8wrl for What was your favorite assembly language?n8wrl2009-12-09T13:54:36Z2009-12-09T13:54:36Z<p>I have fond memories of the CDC Cyber series - 60 bit words, 15-30 bit instructions packed in there, NO stack! Big fun. Z80 is a close 2nd.</p>
http://stackoverflow.com/questions/774335/is-this-really-ddd4Is this really DDD?n8wrl2009-04-21T20:03:08Z2009-12-07T04:15:14Z
<p>I am 80% sure I should not be asking this question because it might come across as negative and I mean no disrespect to anyone, especially the author of this book. I have seen several posts recommending this <a href="http://www.wrox.com/WileyCDA/WroxTitle/-NET-Domain-Driven-Design-with-C-Problem-Design-Solution.productCd-0470147563.html" rel="nofollow">book</a> and its companion <a href="http://www.codeplex.com/dddpds" rel="nofollow">project</a>. I have not read the book, but I have spent a few hours today studying the project. And while it does look very complete, I am having a very hard time with how much the details of various things are scattered around. I am struggling in my own designs with how much I have to change if an entity changes, and this project does not make me very comfortable as a solution.</p>
<p>For example, there is a Employee object that inherits from a Person. Person has a constructor with first-name, last-name, etc. and therefore, so does Employee. Private to Employee are members for first name, last name, plus public properties for the same. </p>
<p>There is an EmployeeFactory that knows about both Employee and Person properties, as well as the SQL column names (to pull values from a reader).</p>
<p>There is an EmployeeRepository with unimplemented PersistNewItem and PersistUpdatedItem methods that I suspect, if implemented, would build SQL for INSERT and UPDATE statements like I see in CompanyRepository. These write the properties to strings to build the SQL.</p>
<p>There is a 'Data Contract' PersonContract with the same private members and public properties as Person, and an EmployeeContract that inherits from PersonContract like Employee does Person, with public properties mirroring the entities.</p>
<p>There is a static 'Converter' class with static methods that map entities to Contracts, including </p>
<pre><code>EmployeeContract ToEmployeeContract(Employee employee)
</code></pre>
<p>which copies the fields from one to the other, including Person fields. There may be a companion method that goes the other way - not sure.</p>
<p>I think there are unit tests too.</p>
<p>In all I count 5-10 classes, methods, and constructors with detailed knowledge about entity properties. Perhaps they're auto-generated - not sure. If I needed to add a 'Salutation' or other property to Person, I would have to adjust all of these classes/methods? I'm sure I'd forget something.</p>
<p>Again, I mean no disrespect and this seems to be a very thorough, detailed example for the book. Is this how DDD is done?</p>
http://stackoverflow.com/questions/1798113/c-generic-interfaces-and-understanding-type-parameter-declaration-must-be-an-i/1798163#17981630Answer by n8wrl for C#: Generic interfaces and understanding "type parameter declaration must be an identifier not a type"n8wrl2009-11-25T16:28:10Z2009-11-25T16:28:10Z<p>I suspect the problem is here:</p>
<pre><code> _db.myClass.First...
</code></pre>
<p>Is it possible you mean something like</p>
<pre><code>_db.GetAll<myClass>().First...
</code></pre>
<p>I think you are confusing myClass as a type vs. myClass as a function _db implements?</p>
http://stackoverflow.com/questions/1797348/safely-iterate-an-array-that-can-be-changed-in-another-thread/1797360#17973604Answer by n8wrl for Safely iterate an array that can be changed in another threadn8wrl2009-11-25T14:42:47Z2009-11-25T14:42:47Z<p>Make a copy? I guess it depends on whether you want your iteration to be a 'snapshot in time' or if you want to see the changes 'live'. The latter can get pretty dicey.</p>
http://stackoverflow.com/questions/334854/ioc-interfaces-best-practices0IoC & Interfaces Best Practicesn8wrl2008-12-02T17:57:57Z2009-11-20T07:00:06Z
<p>I'm experimenting with IoC on my way to TDD by fiddling with an existing project. In a nutshell, my question is this: what are the best practices around IoC when public and non-public methods are of interest?</p>
<p>There are two classes:</p>
<pre><code>public abstract class ThisThingBase
{
public virtual void Method1() {}
public virtual void Method2() {}
public ThatThing GetThat()
{
return new ThatThing(this);
}
internal virtual void Method3() {}
internal virtual void Method4() {}
}
public class Thathing
{
public ThatThing(ThisThingBase thing)
{
m_thing = thing;
}
...
}
</code></pre>
<p>ThatThing does some stuff using its ThisThingBase reference to call methods that are often overloaded by descendents of ThisThingBase.</p>
<p>Method1 and Method2 are public. Method3 and Method4 are internal and only used by ThatThings.</p>
<p>I would like to test ThatThing without ThisThing and vice-versa.</p>
<p>Studying up on IoC my first thought was that I should define an IThing interface, implement it by ThisThingBase and pass it to the ThatThing constructor. IThing would be the public interface clients could call but it doesn't include Method3 or Method4 that ThatThing also needs.</p>
<p>Should I define a 2nd interface - IThingInternal maybe - for those two methods and pass BOTH interfaces to ThatThing?</p>
http://stackoverflow.com/questions/1562175/best-practice-for-relationships-shared-among-multiple-tables/1562194#15621942Answer by n8wrl for Best Practice for relationships shared among multiple tablesn8wrl2009-10-13T18:45:45Z2009-10-13T18:45:45Z<p>How about two new tables - Dog2Notes and People2Notes? Dogs, People, and Notes are all entiries with Keys that relate to each other. Dogs and People can have more than one note, and notes can be shared.</p>
<p>If Dogs and People can only have ONE note each then add a NOteID to each of those tables?</p>
http://stackoverflow.com/questions/1562113/how-do-i-maintain-state-across-multiple-web-servers/1562157#15621570Answer by n8wrl for How do I maintain state across multiple web servers?n8wrl2009-10-13T18:41:18Z2009-10-13T18:41:18Z<p>This isn't probably the answer you're looking for, but can you eliminate the NEED for session state? We've gone to great lengths to encode whatever we might need between requests in the page itself. That way I have no concern for state across a farm or scalability issues with having to hang onto something owned by someone who might never come back.</p>
http://stackoverflow.com/questions/1545711/is-it-possible-to-coalesce-string-and-dbnull-in-c/1545723#1545723-1Answer by n8wrl for Is it possible to coalesce string and DBNull in C#?n8wrl2009-10-09T19:49:20Z2009-10-09T19:49:20Z<p>Not sure the specific answer to your question, but how about this?</p>
<pre><code>string.IsNullOrEmpty(theParam) ? DBNull.Value : theParam
</code></pre>
<p>or if blank is ok</p>
<pre><code>(theParam == null) ? DBNull.Value : theParam
</code></pre>
http://stackoverflow.com/questions/1375148/autofac-asp-net-and-microsoft-practices-servicelocation1Autofac, ASP.NET and Microsoft.Practices.ServiceLocationn8wrl2009-09-03T18:31:01Z2009-10-08T09:04:02Z
<p>I've been working thru the details of implementing IoC in my web apps but in a way that leverages Microsoft.Practices.ServiceLocation. I am specifically using Autofac and the asp.net integration, but I wanted to leave myself open to other containers. Along the lines of <a href="http://stackoverflow.com/questions/644747/autofac-in-web-applications-where-should-i-store-the-container-for-easy-access">this question</a>, i was concerned about how to access the container in my web app code.</p>
<p>I have a 'core' library that primarily defines interfaces to be resolved. This core library is used by my web app and other apps as well. Very handy to have common interfaces defined. I thought this was an excellent place to put access to the IoC container, and I did so with a static class. The trick is injecting the container into the static class.</p>
<p>It's tricky in a web environment becuase the container may be different for each request, while in a non-web app it will probably be the same all the time. At first I tried injecting the container direclty with a method but that quickly failed on the next web request! So I came up with this:</p>
<pre><code>public static class IoCContainer
{
public static void SetServiceLocator(Func<IServiceLocator> getLocator)
{
m_GetLocator = getLocator;
}
static private Func<IServiceLocator> m_GetLocator = null;
public static T GetInstance<T>(string typeName)
{
return m_GetLocator().GetInstance<T>(typeName);
}
}
</code></pre>
<p>Now in my global.asax.cs I do this:</p>
<pre><code>protected void Application_Start(object sender, EventArgs e)
{
var builder = new Autofac.Builder.ContainerBuilder();
... register stuff ...
var container = builder.Build();
_containerProvider = new Autofac.Integration.Web.ContainerProvider(container);
Xyz.Core.IoCContainer.SetServiceLocator(() =>
new AutofacContrib.CommonServiceLocator.AutofacServiceLocator
(_containerProvider.RequestContainer));
}
public IContainerProvider ContainerProvider
{
get { return _containerProvider; }
}
static IContainerProvider _containerProvider;
</code></pre>
<p>And calls to resolve dependences look like</p>
<pre><code>var someService = Xyz.Core.GetInstance<ISomeService>();
</code></pre>
<p>So rather than pass a specific container I pass a delegate that knows how to GET a container. For non-web applications the delegate would probably just return what builder.Build() serves up.</p>
<p>My question to the experts is, does this make sense? I have an easy way to get to something that can resolve dependencies without knowing what the container product is or where the container itself comes from. What do you think?</p>
http://stackoverflow.com/questions/1143504/ddd-repository-encapsulation3DDD, Repository, & Encapsulationn8wrl2009-07-17T14:05:37Z2009-10-04T03:09:29Z
<p>I apologize in advance if folks think this has been beaten to death. I've just spent the last few hours searching and reading many excellent posts here in SO but I'm still confused.</p>
<p>The source of my confusion is DTO vs. DDD and repositories. I want my POCO domain objects to have the smarts, and I want to get them from repositories. But it seems like I have to violate some encapsulation rules to make that work, and it seems like it can turn DTO's onto their heads.</p>
<p>Here's a simple example: In our catalog application, a Part could be a package that includes a number of other parts. So, it makes sense for the Part POCO to have a 'GetChildren()' method which returns IEnumerable< Part >. It might even do other stuff with the list on its way out.</p>
<p>But how is that list resolved? Seems like the repository is the answer:</p>
<pre><code>interface IPartRepository : IRepository<Part>
{
// Part LoadByID(int id); comes from IRepository<Part>
IEnumerable<Part> GetChildren(Part part);
}
</code></pre>
<p>And</p>
<pre><code>class Part
{
...
public IEnumerable<Part> GetChildren()
{
// Might manipulate this list on the way out!
return partRepository.GetChildren(this);
}
}
</code></pre>
<p>So now the consumers of my catalog, in addition to (correctly) loading parts from the repository, can also bypass some Part-encapsulated logic by calling GetChildren(part) directly. Isn't that bad?</p>
<p>I read that repositories should serve up POCO's but that DTO's are good for transferring data 'between layers.' A lot of part properties are computed - prices, for example, are calculated based on complex pricing rules. A price won't even be in a DTO coming from a repository - so it seems like passing pricing data back to a web service requires the DTO to consume the Part, not the other way around.</p>
<p>This is already getting too long. Where is my head unscrewed?</p>
http://stackoverflow.com/questions/1505347/why-does-a-operator-not-exist/1505398#15053982Answer by n8wrl for Why does a "&&=" Operator not exist?n8wrl2009-10-01T17:42:02Z2009-10-01T17:47:40Z<p>If I understand the logic of</p>
<pre><code>a = a && b
</code></pre>
<p>b only gets evaluated if a is true. So...</p>
<pre><code>a &&= b
</code></pre>
<p>If a were already false nothing would happen? b would never be evaluated right?</p>
<p>Maybe it's just clearer to write</p>
<pre><code>if (a)
a = b;
</code></pre>
http://stackoverflow.com/questions/1477468/how-does-sql-server-evaluate-the-cost-of-an-execution-plan-which-contains-a-user/1477515#14775151Answer by n8wrl for How does SQL server evaluate the cost of an execution plan which contains a user defined function?n8wrl2009-09-25T14:10:58Z2009-09-25T14:10:58Z<p>It would help to see the function, but one thing I have seen is burying functions like that in queries can result in poor performance. If you can evaluate some of it beforehand you might be in better shape. For example, instead of </p>
<pre><code>WHERE MyDate < GETDATE()
</code></pre>
<p>Try</p>
<pre><code>DECLARE @Today DATETIME
SET @Today = GETDATE()
...
WHERE MyDate < @Today
</code></pre>
<p>this seems to perform better</p>
http://stackoverflow.com/questions/1473624/business-logic-in-database-versus-code/1473645#14736453Answer by n8wrl for Business Logic in Database versus Code?n8wrl2009-09-24T19:17:48Z2009-09-24T19:49:48Z<p>On a couple of ocassions I have put 'logic' in sprocs because the CRUD might be happening in more than one place. By 'logic' I would have to say it is not really business logic but more 'integrity logic'. It might be the same - some cleanup might be necessary if something gets deleted or updated in a certain way, and if that delete or update could happen from more than one tool with different code-bases it made sense to put it in the proc they all used.</p>
<p>In addition, sometimes the 'business logic line' is pretty blurry. Take reports for example - they may rely on stored procedures or views that encapsulate 'smarts' about what the schema means to the business. How often have you seen CASE statements and the like that 'do things' based on column values or other critieria? Could be construed as business logic and yet it probably does belong in the DB where it can be optimized, etc.</p>
http://stackoverflow.com/questions/1440716/keys-lists-values/1440803#14408030Answer by n8wrl for Keys, Lists, Valuesn8wrl2009-09-17T19:12:47Z2009-09-17T19:12:47Z<p>Is this another re-invention of the uber-generic name-value-pair? I don't really understand the ring/units/keys thing but it reminds me of attempts I've seen in the past to make ultra-flexible name-value pairs that end up being unqueryable and perform poorly.</p>
<p>Identify your entities & build tables to support them.</p>
http://stackoverflow.com/questions/1438884/how-to-get-sql-server-to-return-a-default-of-0-if-no-rows-exist/1438921#14389212Answer by n8wrl for How to get SQL Server to return a default of 0, if no rows exist?n8wrl2009-09-17T13:33:23Z2009-09-17T13:33:23Z<p>SQL 2k5: this worked for me:</p>
<pre><code>isnull(sum(Dept), 0)
</code></pre>
http://stackoverflow.com/questions/1438787/what-is-the-best-length-of-a-coding-session-before-taking-a-break/1438799#14387991Answer by n8wrl for What is the best length of a coding session before taking a break?n8wrl2009-09-17T13:11:36Z2009-09-17T13:11:36Z<p>For me its more about when I start and momentum than how long. I do best early in the morning, and if it's 'clicking' I may notice it's 4pm and wonder where the time went. So I don't have set time-periods where breaks are needed. Plus it depends on what I'm working on.</p>
http://stackoverflow.com/questions/1434160/what-do-you-do-in-sql-server-to-create-or-alter/1434172#14341721Answer by n8wrl for What do you do in SQL Server to CREATE OR ALTER?n8wrl2009-09-16T16:48:33Z2009-09-16T16:48:33Z<p>Looks like it's a while off: <a href="https://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=127219" rel="nofollow">link text</a></p>
<p>typical script for me:</p>
<pre><code>IF EXISTS (SELECT name FROM sysobjects WHERE name = 'ig_InsertDealer' AND type = 'P')
DROP PROC dbo.ig_InsertDealer
GO
CREATE PROCEDURE dbo.ig_InsertDealer
...
GO
GRANT EXECUTE ON dbo.ig_InsertDealer TO ...
GO
</code></pre>
http://stackoverflow.com/questions/1401649/old-content-appearing-on-site-auto-clear-cache/1401757#14017571Answer by n8wrl for Old content appearing on site. Auto Clear Cache?n8wrl2009-09-09T19:57:04Z2009-09-09T20:17:04Z<p>This may sound like a good idea at first but how many users do you hope to support in the future?</p>
<p>I ask becuase if <em>every</em> request should be completely refreshed <em>every</em> time you are going to have a LOT of traffic on your web server. And, your users are going to start complaining about page load times.</p>
<p>With help from tools like yslow and firebug, we've tried to analyze the portions of our pages that can be cached and those that can't. Tip of the iceburg, but...</p>
<p>Images to support site layout - backgrounds, buttons, etc. should be cached for a very long time. They go in a folder tree flagged by IIS as cachable for a long time. They could be delivered by a CDN long-term. If these have to change, we upload new files with new names.</p>
<p>Script/CSS and other, possibly-changing content goes in another folder that gets a shorter cache duration. This could be a problem if we have to fix bugs, but again, uplaod a new file with a new name if necessary.</p>
<p>Anything data-driven (our app is a catalog) is localized and gets refreshed every time.</p>
<p>This is still a work-in-progress for us, but we're seeing MUCH less server traffic and MUCH faster page load times.</p>
<p>I hope this helps!</p>
http://stackoverflow.com/questions/1395668/is-two-way-1-n-relationship-between-classes-acceptable/1395704#13957041Answer by n8wrl for Is two way 1-n relationship between classes acceptable?n8wrl2009-09-08T18:56:52Z2009-09-08T18:56:52Z<p>There is only one observer NOW, but who knows in the future?</p>
<p>A gets a B. B exposes an event that A (or anyone else for that matter) subscribes to. B fires the event, A gets the message.</p>
<p>B does not know about A it only knows about its own event.</p>
http://stackoverflow.com/questions/1381118/sql-server-2005-trigger-to-hash-password-at-insertion/1381154#13811540Answer by n8wrl for sql server 2005 - trigger to hash password at insertionn8wrl2009-09-04T19:35:05Z2009-09-04T19:35:05Z<p>I may be reading too much into your question, but I think you WANT to do something client-side. Here's why:</p>
<p>The only place a password should be in clear-text is when the user types it. Encrypt it, send it over the wire, store it encrypted, & compare it encrypted. At no point in this chain is the password sniffable.</p>
<p>If you were to encrypt the password when it was written, how would you ever check it when they try to log in later?</p>
http://stackoverflow.com/questions/1379823/why-would-someone-fully-qualify-an-object-in-code-when-there-is-a-using-statement/1379847#13798471Answer by n8wrl for why would someone fully qualify an Object in code when there is a using statement declared?n8wrl2009-09-04T15:07:23Z2009-09-04T15:07:23Z<p>Sometimes namespaces 'conflict' - there are classes of the same name in multiple namespaces and fully-qualifying them distinguishes them.</p>
http://stackoverflow.com/questions/1379343/worst-example-of-you-duplicating-existing-functionality/1379704#13797042Answer by n8wrl for Worst example of you duplicating existing functionality?n8wrl2009-09-04T14:43:35Z2009-09-04T14:43:35Z<p>A couple of jobs ago a co-worker didn't trust SQL's JOIN so he set about writing one himself...</p>
http://stackoverflow.com/questions/1375421/c-get-name-of-derived-type-from-inside-base-class/1375429#13754293Answer by n8wrl for C# Get Name of Derived Type from Inside base Classn8wrl2009-09-03T19:27:16Z2009-09-03T19:27:16Z<p>this.GetType().Name should work. Are you sure you have a derived class?</p>
http://stackoverflow.com/questions/1369883/autofac-asp-net-integration-and-dispose1autofac, ASP.NET integration, and Disposen8wrl2009-09-02T20:15:25Z2009-09-03T17:57:29Z
<p>Autofac newbie here, but I like what I see so far. I'm trying to take advantage of request-lifetime of my resolved objects and I'm having trouble confirming that a dispose is actually happening after a request is done.</p>
<p>I have a disposable object that I get at the start of a page request and dispose at the end. I'm using autofac to get an instance of the object now and I wanted to see if autofac would do the disposing for me.</p>
<p>i've instrumented the Dispose() method on the object in question, and i can see it 'fire' when my page does the lifetime management. I see no evidence when I don't dispose myself but let autofac do it.</p>
<p>I'm using <a href="http://code.google.com/p/autofac/wiki/AspNetIntegration" rel="nofollow">these</a> instructions to get thigns configured, including the web.config and global.asax changes. I am able to instantiate the object just fine but I can't tell if it's really being disposed. Is there another step?</p>
http://stackoverflow.com/questions/1369883/autofac-asp-net-integration-and-dispose/1374963#13749630Answer by n8wrl for autofac, ASP.NET integration, and Disposen8wrl2009-09-03T17:57:29Z2009-09-03T17:57:29Z<p>I figured it out!</p>
<p>I was asking the WRONG container for the object instance - I was asking the application-container for the object and not the request-container.</p>
<p>D'oh!</p>
http://stackoverflow.com/questions/1374196/autofac-asp-net-integration-and-httprequestscoped1autofac, ASP.NET integration, and HttpRequestScopedn8wrl2009-09-03T15:35:26Z2009-09-03T17:55:52Z
<p>I previously asked a question <a href="http://stackoverflow.com/questions/1369883/autofac-asp-net-integration-and-dispose">here</a> about autofac not disposing my objects when the HTTP request ends. I now think I have a bigger problem, becuasse there is evidence that it is serving up the SAME object request-to-request. Again, I am using thier instructions <a href="http://code.google.com/p/autofac/wiki/AspNetIntegration" rel="nofollow">here</a>. My test is a bit more complex because I'm using the delegate syntax to create an object but I think I'm flagging it for request-lifetime. Global.asax.cs:</p>
<pre><code>protected void Application_Start(object sender, EventArgs e)
{
...
var builder = new Autofac.Builder.ContainerBuilder();
builder.Register<IDBConnectionSelector>(
(c) => new CachingDBConnections(ConstructorArgs...))
.HttpRequestScoped();
var container = builder.Build();
_containerProvider = new ContainerProvider(container);
}
public IContainerProvider ContainerProvider
{
get { return _containerProvider; }
}
static IContainerProvider _containerProvider;
</code></pre>
<p>My intention here is to register IDBConnectionSelector to get the concrete type CachingDBConnections created with a custom constructor but with HTTP request scope.</p>
<p>Some methods of the CachingDBConnections object is failing on subsequent requests in a way that leads me to believe I'm getting the same one I got last time and not a NEW one for every request.</p>
<p>Does that make sense? What am I doing wrong?</p>
http://stackoverflow.com/questions/1374196/autofac-asp-net-integration-and-httprequestscoped/1374956#13749560Answer by n8wrl for autofac, ASP.NET integration, and HttpRequestScopedn8wrl2009-09-03T17:55:52Z2009-09-03T17:55:52Z<p>I figured it out!</p>
<p>I was asking the WRONG container for the object instance - I was asking the application-container for the object and not the request-container.</p>
<p>D'oh!</p>
http://stackoverflow.com/questions/1368302/how-bad-is-my-query/1368325#13683251Answer by n8wrl for How bad is my query?n8wrl2009-09-02T15:14:15Z2009-09-02T15:14:15Z<p>Standard SQL Injection Disclaimers here...</p>
<p>One thing you could do, to avoid SQL injection since you know it's only four parameters is use a stored procedure where you pass values for the fields or NULL. I am not sure of mySQL stored proc syntax, but the query would boil down to</p>
<pre><code>SELECT *
FROM my_table
WHERE Field1 = ISNULL(@Field1, Field1)
AND Field2 = ISNULL(@Field2, Field2)
...
ORDRE BY ordering_fld
</code></pre>
http://stackoverflow.com/questions/1367789/i-would-like-to-override-a-method-in-c-but-i-have-a-different-signature/1368060#13680601Answer by n8wrl for I would like to override a method in C#, but I have a different signaturen8wrl2009-09-02T14:32:57Z2009-09-02T14:32:57Z<p>Presumabely A and B have something in common. Can you factor that out into a different base class?</p>
<pre><code>public class Base
{
... common stuff ...
}
public class A : Base
{
public void Init()
{
}
}
public class B : Base
{
public void Init(int info)
{
}
}
</code></pre>
<p>if you need polymorphism then references to Base or, better yet, Thomas' interface are the way to go.</p>
http://stackoverflow.com/questions/1858430/what-was-your-favorite-assembly-language/1874058#1874058Comment by n8wrl on What was your favorite assembly language?n8wrl2009-12-10T12:36:36Z2009-12-10T12:36:36Z@Mark: You worked on Cyber too? How about calling functions resulted in a 'JMP _returnspot_' placed in the first word of the function and then JMP Func+1 was executed. To return, you JMP'ed to the first word of your function!http://stackoverflow.com/questions/1876457/how-do-you-best-offload-a-database-insert-so-a-web-response-is-returned-quicker/1876583#1876583Comment by n8wrl on How do you best offload a database insert, so a web response is returned quicker?n8wrl2009-12-09T20:51:58Z2009-12-09T20:51:58Z@Ben: Very good point. My concern tho is applying complexity before we're sure where the problem really is. The past couple of years have been an eye-opening experience into distributed systems for me and 95% of the time I've found that even getting server processing down to 0 still results in unacceptable client performance.http://stackoverflow.com/questions/1798113/c-generic-interfaces-and-understanding-type-parameter-declaration-must-be-an-i/1798163#1798163Comment by n8wrl on C#: Generic interfaces and understanding "type parameter declaration must be an identifier not a type"n8wrl2009-11-25T16:39:36Z2009-11-25T16:39:36ZBecause if you do then GetByID has to be a big switch statement to call the right one based on typeof(myClass).http://stackoverflow.com/questions/1798113/c-generic-interfaces-and-understanding-type-parameter-declaration-must-be-an-i/1798163#1798163Comment by n8wrl on C#: Generic interfaces and understanding "type parameter declaration must be an identifier not a type"n8wrl2009-11-25T16:37:58Z2009-11-25T16:37:58ZSo you have a property of Data.myEntities for each T you might have an interface for?http://stackoverflow.com/questions/1711446/sql-string-not-line-breaking-in-gridviewComment by n8wrl on SQL string not line breaking in gridviewn8wrl2009-11-10T21:55:07Z2009-11-10T21:55:07ZI would use a template field and lay out accordingly. <a href="http://aspnet101.com/aspnet101/tutorials.aspx?id=58" rel="nofollow">aspnet101.com/aspnet101/tutorials.aspx?id=58/…</a>http://stackoverflow.com/questions/1711446/sql-string-not-line-breaking-in-gridviewComment by n8wrl on SQL string not line breaking in gridviewn8wrl2009-11-10T21:49:17Z2009-11-10T21:49:17ZFWIW you shouldn't do your HTML formatting in SQL. Return two data fields and format your grid accordingly.http://stackoverflow.com/questions/1711446/sql-string-not-line-breaking-in-gridview/1711456#1711456Comment by n8wrl on SQL string not line breaking in gridviewn8wrl2009-11-10T21:48:12Z2009-11-10T21:48:12ZThis is exaclty it - unless you flag the column as 'nowrap' HTML will wrap w/o the linebreakhttp://stackoverflow.com/questions/1626301/when-to-create-when-to-modify-a-tableComment by n8wrl on When to Create, When to Modify a Table?n8wrl2009-10-26T18:01:12Z2009-10-26T18:01:12ZCan you help with some specific scenarios? That's a pretty broad question: "when should I create a new spreadsheet vs. modify an existing one - I use Excel."http://stackoverflow.com/questions/1566813/what-is-causing-subquery-returned-more-than-1-value-error/1567018#1567018Comment by n8wrl on What is causing "Subquery returned more than 1 value..." error?n8wrl2009-10-14T17:36:01Z2009-10-14T17:36:01ZIt's also posible someone ELSE could be doing an insert that SHOULD have the triggers while you've disabled them.http://stackoverflow.com/questions/1545711/is-it-possible-to-coalesce-string-and-dbnull-in-c/1545723#1545723Comment by n8wrl on Is it possible to coalesce string and DBNull in C#?n8wrl2009-10-09T19:50:57Z2009-10-09T19:50:57ZD'oh! That'll teach me to post-before-test!http://stackoverflow.com/questions/1375148/autofac-asp-net-and-microsoft-practices-servicelocation/1536533#1536533Comment by n8wrl on Autofac, ASP.NET and Microsoft.Practices.ServiceLocationn8wrl2009-10-08T13:51:34Z2009-10-08T13:51:34ZThis is very cool Peter but I was hoping to be able to reuse my '.Core' libraries in other contexts, perhaps not even web-based. Still, I think this is a great answer because it helps ground me to avoid too many abstractions. Thanks!http://stackoverflow.com/questions/1505347/why-does-a-operator-not-exist/1505398#1505398Comment by n8wrl on Why does a "&&=" Operator not exist?n8wrl2009-10-01T17:58:25Z2009-10-01T17:58:25ZYeah but it makes the short-circuiting obvioushttp://stackoverflow.com/questions/1505347/why-does-a-operator-not-exist/1505398#1505398Comment by n8wrl on Why does a "&&=" Operator not exist?n8wrl2009-10-01T17:45:52Z2009-10-01T17:45:52ZTrue - just thinking it thru. Seems like an odd, difficult-to-read form of if (!a) a=bhttp://stackoverflow.com/questions/1473609/memory-leak-debugComment by n8wrl on memory leak debugn8wrl2009-09-24T19:12:49Z2009-09-24T19:12:49ZNeed a little help - what language, platform, brand-o-beer?http://stackoverflow.com/questions/1466875/ies-understanding-of-thisComment by n8wrl on IEs understanding of 'this'n8wrl2009-09-23T15:51:31Z2009-09-23T15:51:31ZThis code lives in an event handler?