User zonkflut - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T01:54:42Zhttp://stackoverflow.com/feeds/user/33829http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/994662/inserting-a-record-with-a-composite-key-using-nhibernate1Inserting a record with a Composite Key using NHibernatezonkflut2009-06-15T06:04:12Z2009-09-09T09:45:54Z
<p>Hey all,</p>
<p>I am working with a legacy database that uses composite keys. And I am trying to use NHibernate to insert a new record into the database. NHibernate specifies that I have to create the Id manually, but when I try to insert with this id I get the message:</p>
<pre><code>System.Data.SqlClient.SqlException: Cannot insert explicit value for identity column in table 'tablename' when IDENTITY_INSERT is set to OFF.
</code></pre>
<p>I cannot touch any of the db settings as they are administered by head office in USA.</p>
<p>I found that I can do a db insert via:</p>
<pre><code>insert into tablename (tablename_country_id, /*extra fields here*/) values (16, /*extra values here*/)
</code></pre>
<p>and the <code>tablename_id</code> column is automatically incremented.</p>
<p>Is it possible to write some sort of a handler that allows me to create an <code>ID</code> object with the <code>CountryId</code> set and have it auto-increment the <code>Id</code> property.</p>
<p>Cheers.</p>
<p><br /></p>
<p>Example Code:</p>
<p>Table Definition:</p>
<pre><code>CREATE TABLE [dbo].[tablename](
[tablename_country_id] [int] NOT NULL,
[tablename_id] [int] IDENTITY(1,1) NOT NULL,
-- more fields here
CONSTRAINT [pk_tablename] PRIMARY KEY
(
[tablename_country_id] ASC,
[tablename_id] ASC
)
)
</code></pre>
<p>Class Files:</p>
<pre><code>public class ModelObject
{
public ID { get; set; }
// more properties here
}
public class ID : INHibernateProxy
{
public int Id { get; set; }
public int CountryId { get; set; }
public ILazyInitializer HibernateLazyInitializer { get { throw new ApplicationException(); } }
}
</code></pre>
<p>Mapping File:</p>
<pre><code><?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" namespace="Model" assembly="API">
<class name="ModelObject" table="dbname.dbo.tablename" lazy="false">
<composite-id name="Id" class="ID">
<key-property name="Id" column="tablename_id" type="int" />
<key-property name="CountryId" column="tablename_country_id" type="int" />
</composite-id>
<!-- more properties here -->
</class>
</hibernate-mapping>
</code></pre>
http://stackoverflow.com/questions/998501/configuration-issue-web-config-custom-providers/999153#9991530Answer by zonkflut for Configuration issue Web.Config / Custom Providerszonkflut2009-06-16T00:51:13Z2009-06-16T00:51:13Z<p>have you configured your config file to accept your handler?</p>
<p>I.E. added a <code>section</code> entry to your <code>configSections</code> collection at the top of the <code>web.config</code> file.</p>
<pre><code><configSections>
<section name="healthMonitoringSection" type="fully qualified assembly path of handler" />
</configSections>
</code></pre>
http://stackoverflow.com/questions/920844/c-how-to-access-internal-class-from-external-assembly/984541#9845412Answer by zonkflut for C# - How to access internal class from external assemblyzonkflut2009-06-12T00:52:31Z2009-06-12T00:52:31Z<p>I see only one case that you would allow exposure to your internal members to another assembly and that is for testing purposes.</p>
<p>Saying that there is a way to allow "Friend" assemblies access to internals:</p>
<p>In the AssemblyInfo.cs file of the project you add a line for each assembly.</p>
<pre><code>[assembly: InternalsVisibleTo("name of assembly here")]
</code></pre>
<p>this info is available <a href="http://msdn.microsoft.com/en-us/library/0tke9fxk.aspx" rel="nofollow">here.</a></p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/968124/what-is-the-correct-way-to-write-a-constructor-for-a-wrapper-class/968186#9681861Answer by zonkflut for What is the correct way to write a constructor for a wrapper classzonkflut2009-06-09T04:48:32Z2009-06-09T04:48:32Z<p>I have written a base Wrapper Object that I have all my wrappers inherit from.</p>
<pre><code>public abstract class BaseWrapper<TBaseType>
where TBaseType : class
{
protected readonly TBaseType BaseItem;
protected BaseWrapper(TBaseType value)
{
BaseItem = value;
}
public bool IsNotNull()
{
return BaseItem != null;
}
}
</code></pre>
http://stackoverflow.com/questions/967511/how-do-different-languages-handle-the-dangling-else/967733#9677331Answer by zonkflut for How do different languages handle the "dangling else"?zonkflut2009-06-09T01:08:37Z2009-06-09T01:08:37Z<p>The Way C# works is that it matches the else statements in order of the else statements used.</p>
<p>ie.</p>
<pre><code>if (x == 1)
if (y == 1)
Console.WriteLine("Hello");
else
Console.WriteLine("World");
else
Console.WriteLine("All your base are belong to us.");
</code></pre>
<p>however if you want to change where the else goes.</p>
<pre><code>if (x == 1)
{
if (y == 1)
Console.WriteLine("Hello World");
}
else
Console.WriteLine("All your base are belong to us.");
</code></pre>
http://stackoverflow.com/questions/947995/getting-an-ioexception-on-multiple-writes-to-a-file0Getting an IOException on multiple writes to a file.zonkflut2009-06-04T00:22:58Z2009-06-04T23:07:02Z
<p>Hey,</p>
<p>I have implemented a csv file builder that takes in an xml document applies a xsl transform to it and appends it to a file.</p>
<pre><code>public class CsvBatchPrinter : BaseBatchPrinter
{
public CsvBatchPrinter() : base(".csv")
{
RemoveDiatrics = false;
}
protected override void PrintDocuments(System.Collections.Generic.List<XmlDocument> documents, string xsltFileName, string directory, string tempImageDirectory)
{
base.PrintDocuments(documents, xsltFileName, directory, tempImageDirectory);
foreach (var file in new DirectoryInfo(tempImageDirectory).GetFiles())
{
var destination = directory + file.Name;
if (!File.Exists(destination))
file.CopyTo(destination);
}
}
protected override void PrintDocument(XmlDocument document, string xsltFileName, string directory, string tempImageDirectory)
{
StringUtils.EscapeQuotesInXmlNode(document);
if (RemoveDiatrics)
{
var docXml = StringUtils.RemoveDiatrics(document.OuterXml);
document = new XmlDocument();
document.LoadXml(docXml);
}
using (var writer = new StreamWriter(string.Format("{0}{1}{2}", directory, "batch", FileExtension), true, Encoding.ASCII))
{
Transform(document, xsltFileName, writer);
}
}
public bool RemoveDiatrics { get; set; }
}
</code></pre>
<p>I have a large number of xml documents to add to this csv file and after multiple calls to it, it occasionally throws an IOException <code>The process cannot access the file 'batch.csv' because it is being used by another process.</code></p>
<p>Would this be be some sort of locking issue?</p>
<p>Could it be solved by:</p>
<pre><code>lock(this)
{
using (var writer = new StreamWriter(string.Format("{0}{1}{2}", directory, "batch", FileExtension), true, Encoding.ASCII))
{
Transform(document, xsltFileName, writer);
}
}
</code></pre>
<p><strong>EDIT:</strong></p>
<p>Here is my stack trace:<br /></p>
<pre><code>at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy)
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options)
at System.IO.StreamWriter.CreateFile(String path, Boolean append)
at System.IO.StreamWriter..ctor(String path, Boolean append, Encoding encoding, Int32 bufferSize)
at System.IO.StreamWriter..ctor(String path, Boolean append, Encoding encoding)
at Receipts.Facade.Utilities.BatchPrinters.CsvBatchPrinter.PrintDocument(XmlDocument document, String xsltFileName, String directory, String tempImageDirectory) in CsvBatchPrinter.cs:line 37
at Receipts.Facade.Utilities.BatchPrinters.BaseBatchPrinter.PrintDocuments(List`1 documents, String xsltFileName, String directory, String tempImageDirectory) in BaseBatchPrinter.cs:line 30
at Receipts.Facade.Utilities.BatchPrinters.CsvBatchPrinter.PrintDocuments(List`1 documents, String xsltFileName, String directory, String tempImageDirectory) in CsvBatchPrinter.cs:line 17
at Receipts.Facade.Utilities.BatchPrinters.BaseBatchPrinter.Print(List`1 documents, String xsltFileName, String destinationDirectory, String tempImageDirectory) in BaseBatchPrinter.cs:line 23
at Receipts.Facade.Modules.FinanceDocuments.FinanceDocumentActuator`2.printXmlFiles(List`1 xmlDocuments, String tempImagesDirectory) in FinanceDocumentActuator.cs:line 137
</code></pre>
<p>and my base class:</p>
<pre><code>public abstract class BaseBatchPrinter : IBatchPrinter
{
private static readonly ILog Log = LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
protected readonly string FileExtension;
protected BaseBatchPrinter(string fileExtension)
{
FileExtension = fileExtension;
}
public void Print(List<XmlDocument> documents, string xsltFileName, string destinationDirectory, string tempImageDirectory)
{
Log.InfoFormat("Printing to directory: {0}", destinationDirectory);
PrintDocuments(documents, xsltFileName, destinationDirectory, tempImageDirectory);
}
protected virtual void PrintDocuments(List<XmlDocument> documents, string xsltFileName, string directory, string tempImageDirectory)
{
foreach (var document in documents)
{
PrintDocument(document, xsltFileName, directory, tempImageDirectory);
}
}
/// <summary>
/// Needs to Call Transform(XmlDocument document, string xsltFileName, string directory)
/// </summary>
protected abstract void PrintDocument(XmlDocument document, string xsltFileName, string directory, string tempImageDirectory);
protected void Transform(XmlDocument document, string xsltFileName, StreamWriter writer)
{
//TODO: look into XslCompiledTransform to replace the XslTransform
var xslTransform = new XslTransform();
xslTransform.Load(xsltFileName);
xslTransform.Transform(createNavigator(document), null, writer);
}
protected string CreateFileName(string directory, XmlDocument doc)
{
var conId = createNavigator(doc).SelectSingleNode(Config.SELECT_CONSTITUENT_ID_XPATH).Value;
return string.Format(@"{0}{1}{2}", directory, conId, FileExtension.IndexOf('.') > -1 ? FileExtension : "." + FileExtension);
}
protected XPathNavigator createNavigator(XmlDocument document)
{
return document.DocumentElement == null ? document.CreateNavigator() : document.DocumentElement.CreateNavigator();
}
}
</code></pre>
<p>Cheers.</p>
http://stackoverflow.com/questions/947995/getting-an-ioexception-on-multiple-writes-to-a-file/953565#9535650Answer by zonkflut for Getting an IOException on multiple writes to a file.zonkflut2009-06-04T23:07:02Z2009-06-04T23:07:02Z<p>Hey all thanks for your responses.</p>
<p>I have come up with a solution that works for me. A little bit hacky but it does the job.</p>
<pre><code>protected override void PrintDocument(XmlDocument document, string xsltFileName, string directory, string tempImageDirectory)
{
StringUtils.EscapeQuotesInXmlNode(document);
if (RemoveDiatrics)
{
var docXml = StringUtils.RemoveDiatrics(document.OuterXml);
document = new XmlDocument();
document.LoadXml(docXml);
}
IOException ex = null;
for (var attempts = 0; attempts < 10; attempts++)
{
ex = tryWriteToFile(document, directory, xsltFileName);
if (ex == null)
break;
}
if (ex != null)
throw new ApplicationException("Cannot write to file", ex);
}
private IOException tryWriteToFile(XmlDocument document, string directory, string xsltFileName)
{
try
{
using (var writer = new StreamWriter(new FileStream(string.Format("{0}{1}{2}", directory, "batch", FileExtension), FileMode.Append, FileAccess.Write, FileShare.Read), Encoding.ASCII))
{
Transform(document, xsltFileName, writer);
writer.Close();
}
return null;
}
catch (IOException e)
{
return e;
}
}
</code></pre>
<p>Basically the idea behind it is to attempt to run it a couple of times and if the problem persists throw the error.</p>
<p>Gets me through the issue</p>
http://stackoverflow.com/questions/948356/formatting-html-dates-and-numbers-on-the-fly/948409#9484090Answer by zonkflut for Formatting html dates and numbers on the flyzonkflut2009-06-04T03:09:10Z2009-06-04T03:09:10Z<p>you could try </p>
<pre><code><td><%# ((DateTime)Eval("myDate")).ToString("{0:dd MMM yyyy}") %></td>
</code></pre>
http://stackoverflow.com/questions/947896/fluent-nhibernate-has-many-to-many-convention-questions/947925#9479250Answer by zonkflut for Fluent NHibernate Has Many to Many Convention Questionszonkflut2009-06-04T00:00:11Z2009-06-04T00:00:11Z<p>try this <a href="http://wiki.fluentnhibernate.org/show/StandardMappingRelationships" rel="nofollow">one</a> </p>
http://stackoverflow.com/questions/937426/formatting-of-hard-to-read-try-catch-finally-blocks/937483#9374830Answer by zonkflut for Formatting of hard to read try..catch..finally blocks?zonkflut2009-06-02T00:48:33Z2009-06-02T00:48:33Z<p>I think your formatting reads well too. My suggestion would be to only use the <code>catch</code> statement sparingly. Only use it when you actually need to catch something. Otherwise you can let other parts of the program handle the exception. The whole "fail early" concept.</p>
<pre><code>try
{
//do something that may throw an exception.
}
finally
{
//handle clean up.
}
//let a method further down the stack handle the exception.
</code></pre>
http://stackoverflow.com/questions/937247/using-generics-in-interfaces/937431#9374310Answer by zonkflut for Using Generics in Interfaceszonkflut2009-06-02T00:28:28Z2009-06-02T00:28:28Z<p>You could try</p>
<pre><code>public struct CookieData<T>
where T : Object
{
T Value { get; set; }
DateTime Expires { get; set; }
}
</code></pre>
<p>That way all instances of T would be forced to have a base type of Object. (pretty much everything in C# (e.g. int == System.Integer etc.).</p>
http://stackoverflow.com/questions/923570/how-can-i-have-design-time-support-for-my-custom-user-controls-in-visual-studio-2/923639#9236390Answer by zonkflut for How can I have design time support for my custom user controls in Visual Studio 2008?zonkflut2009-05-28T23:09:54Z2009-05-28T23:30:40Z<p>There is a sample you can download <a href="http://msdn.microsoft.com/en-us/library/ms180794%28VS.80%29.aspx" rel="nofollow">here</a> that shows how to incorporate a WYSIWYG design-time experience.</p>
<p>Also there is annother tutorial <a href="http://msdn.microsoft.com/en-us/library/aa478960.aspx" rel="nofollow">here</a>. Look at the section on the "Designer".</p>
<p>Hope this helps</p>
http://stackoverflow.com/questions/875867/how-can-i-use-credit-card-numbers-containing-spaces/896005#8960050Answer by zonkflut for How can I use credit card numbers containing spaces?zonkflut2009-05-22T01:08:12Z2009-05-22T01:08:12Z<p>you could use javascript validation by using the <code>onkeypress</code> event to check if the last character is valid and if not just remove it and maybe even flash up a message saying that an invalid character was entered. This way invalid numbers are never entered. It could also automatically enter a spacer character (space or -) in the format you want.</p>
http://stackoverflow.com/questions/891510/how-do-you-track-time-spent-working-on-a-project/891669#8916691Answer by zonkflut for How do you track time spent working on a project?zonkflut2009-05-21T06:53:18Z2009-05-21T06:53:18Z<p>I use bug tracking software at work called <a href="http://www.fogcreek.com/FogBugz/" rel="nofollow">FogBugz</a>. It allows me to log time against the cases that I add into it. It is also completly web based.</p>
http://stackoverflow.com/questions/881336/telerik-radgrid-cast-exception-when-populated-with-an-array-of-objects-by-their-p0Telerik RadGrid Cast exception when populated with an array of objects by their parent typezonkflut2009-05-19T07:02:02Z2009-05-19T07:03:49Z
<p>I have just come across a Casting Exception while using the Telerik RadGrid.</p>
<p>It occurs during the DataBind event if I have an array of objects as the datasource</p>
<p><code>radgrid1.DataSource = new BaseObject[] { new ChildObject1(), new ChildObject2() };</code></p>
<p>where the classes ChildObject1 and ChildObject2 both inherit from the class BaseObject.</p>
http://stackoverflow.com/questions/881336/telerik-radgrid-cast-exception-when-populated-with-an-array-of-objects-by-their-p/881341#8813410Answer by zonkflut for Telerik RadGrid Cast exception when populated with an array of objects by their parent typezonkflut2009-05-19T07:03:49Z2009-05-19T07:03:49Z<p>Just found the answer.</p>
<p><code>var objects = new BaseObject[] { new ChildObject1(), new ChildObject2() };</code>
<code>radgrid1.DataSource = new List<BaseObject>(objects);</code></p>
http://stackoverflow.com/questions/92159/how-do-you-vent-stress-as-a-programmer/867186#8671860Answer by zonkflut for How do you vent stress as a programmer?zonkflut2009-05-15T06:06:29Z2009-05-15T06:06:29Z<p>We have bought a Fooseball table which we play during breaks</p>
http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/867055#8670550Answer by zonkflut for What things didn't you know you needed but are now very glad you have?zonkflut2009-05-15T05:11:49Z2009-05-15T05:11:49Z<p><a href="http://www.jetbrains.com" rel="nofollow">Resharper</a> Proberbly one of the most useful tools I have ever used.
Makes my coding experience in Visual Studio so much more pleasent.</p>
http://stackoverflow.com/questions/63668/confessions-of-your-worst-wtf-moment-what-not-to-do/867025#8670250Answer by zonkflut for Confessions of your worst WTF Moment. (What not to do.)zonkflut2009-05-15T04:55:17Z2009-05-15T04:55:17Z<p>My work mate was trying to fix an issue on the production database.</p>
<p><code>UPDATE Campaigns SET Status = 'Error'</code><br />
<code>F5</code></p>
<p>%#@$&^!!!!</p>
<p>Needless to say he wore the dunce hat for the next month :-)</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/867002#8670021Answer by zonkflut for What are Code Smells? What is the best way to correct them?zonkflut2009-05-15T04:43:31Z2009-05-15T04:43:31Z<p>Annother Double negative issue in C#</p>
<p><code>if (!!IsTrue) return value;</code></p>
<p>I have seen he double <code>!</code> cause bugs in the past.</p>
<p>instead remove the <code>!!</code> to avoid confusion</p>
http://stackoverflow.com/questions/828342/what-is-the-best-way-to-convert-an-ienumerator-to-a-generic-ienumerator4What is the best way to convert an IEnumerator to a generic IEnumerator?zonkflut2009-05-06T06:54:12Z2009-05-06T13:18:43Z
<p>I am writing a custom ConfigurationElementCollection for a custom ConfigurationHandler in C#.NET 3.5 and I am wanting to expose the IEnumerator as a generic IEnumerator.</p>
<p>What would be the best way to achieve this?</p>
<p>I am currently using the code:</p>
<pre>
public new IEnumerator<GenericObject> GetEnumerator()
{
var list = new List();
var baseEnum = base.GetEnumerator();
while(baseEnum.MoveNext())
{
var obj = baseEnum.Current as GenericObject;
if (obj != null)
list.Add(obj);
}
return list.GetEnumerator();
}
</pre>
<p>Cheers</p>
http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/261029#26102919Answer by zonkflut for What is your best programmer joke?zonkflut2008-11-04T06:00:27Z2008-11-04T06:00:27Z<p>Mathematician, Physicist, Engineer walking through a field come upon a farmer.</p>
<p>The farmer asks what is the best way to construct a fence that will contain his livestock (ie., most area for least perimeter). The physicist does some calculus and concludes that the best way to do this is a square fence. The engineer looks at him and laughs. "No, the best way is a circle". The physicist concedes and they start building the fence.</p>
<p>The mathematician just sits there for a while and eventually stands up, puts a small piece around himself and says "I declare myself to be outside".</p>
http://stackoverflow.com/questions/260218/what-are-your-favorite-yak-shaving-euphemisms/261022#2610222Answer by zonkflut for What are your favorite "yak shaving" euphemisms?zonkflut2008-11-04T05:55:17Z2008-11-04T05:55:17Z<p>The good old ID10T error</p>
http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/260633#26063357Answer by zonkflut for What is your best programmer joke?zonkflut2008-11-04T02:31:47Z2008-11-04T02:31:47Z<p>There's no place like 127.0.0.1</p>
http://stackoverflow.com/questions/260512/n-tier-design-with-website-and-backend-transaction-processor/260611#2606110Answer by zonkflut for n-tier design with website and backend transaction processor.zonkflut2008-11-04T02:22:52Z2008-11-04T02:22:52Z<p>The "Ideal" way to do this depends on the project at hand and the various requirements of the system.</p>
<p>My default design is to have it act as one app. But if there are more heavyweight processes taking place, I like to create a batching process where the parameters of the requested job are stored and acted upon by a seperate process.</p>
http://stackoverflow.com/questions/504487/installation-problems-with-asp-mvc-release-candidate-1/507497#507497Comment by zonkflut on Installation problems with ASP MVC Release Candidate 1zonkflut2009-09-16T06:44:18Z2009-09-16T06:44:18ZThis solved my problem :) All good after uninstalling CloneDetective.http://stackoverflow.com/questions/1075766/cant-build-dtproj-ssis-project-in-visual-studio/1075804#1075804Comment by zonkflut on Can't build dtproj [SSIS] project in Visual Studiozonkflut2009-09-16T02:33:38Z2009-09-16T02:33:38ZThis worked for me. Thanks.http://stackoverflow.com/questions/994662/inserting-a-record-with-a-composite-key-using-nhibernate/1398620#1398620Comment by zonkflut on Inserting a record with a Composite Key using NHibernatezonkflut2009-09-15T06:12:46Z2009-09-15T06:12:46Zthe CountryID is required as it is used to uniquely identify which instance of the database (i.e. which country's database) it is on replication.
This was the original solution chosen to deal with distributed databases.
Hence to remain correct I have to use the composite key :(http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/867002#867002Comment by zonkflut on What are Code Smells? What is the best way to correct them?zonkflut2009-07-10T05:03:43Z2009-07-10T05:03:43ZMy guess would be some sick sadistic masochist programmer wanting to assert their dominance over future readers of their code base.http://stackoverflow.com/questions/998501/configuration-issue-web-config-custom-providers/999153#999153Comment by zonkflut on Configuration issue Web.Config / Custom Providerszonkflut2009-06-16T23:25:59Z2009-06-16T23:25:59Zcheers, I didn't realise that. But if you were creating a custom provider for it wouldn't you have to register it somewhere?http://stackoverflow.com/questions/994662/inserting-a-record-with-a-composite-key-using-nhibernate/994947#994947Comment by zonkflut on Inserting a record with a Composite Key using NHibernatezonkflut2009-06-16T06:02:43Z2009-06-16T06:02:43Zthis option throws an FKUnmatchingColumnsException 'must have same number of columns as the referenced primary key'http://stackoverflow.com/questions/994662/inserting-a-record-with-a-composite-key-using-nhibernate/994947#994947Comment by zonkflut on Inserting a record with a Composite Key using NHibernatezonkflut2009-06-16T00:29:10Z2009-06-16T00:29:10ZHow would this affect the caching of objects? In particular the <code>session.Get<TModel>(id);</code> with the possibility of duplicates in the <code>tablename_id</code> column.http://stackoverflow.com/questions/947995/getting-an-ioexception-on-multiple-writes-to-a-fileComment by zonkflut on Getting an IOException on multiple writes to a file.zonkflut2009-06-04T04:13:36Z2009-06-04T04:13:36Zadding the extra .Close() didn't work.http://stackoverflow.com/questions/947995/getting-an-ioexception-on-multiple-writes-to-a-file/948013#948013Comment by zonkflut on Getting an IOException on multiple writes to a file.zonkflut2009-06-04T02:59:18Z2009-06-04T02:59:18Zshould it matter? but it ends up close to 20mb by the time it has been called a few hundred times.http://stackoverflow.com/questions/947995/getting-an-ioexception-on-multiple-writes-to-a-fileComment by zonkflut on Getting an IOException on multiple writes to a file.zonkflut2009-06-04T02:58:00Z2009-06-04T02:58:00ZSimon you should add that as an answer....http://stackoverflow.com/questions/947995/getting-an-ioexception-on-multiple-writes-to-a-file/948013#948013Comment by zonkflut on Getting an IOException on multiple writes to a file.zonkflut2009-06-04T01:20:26Z2009-06-04T01:20:26ZThe CreateFileName method is not used by the CsvBatchPrinter at all. I'll get Process Monitor and have a look.
Cheershttp://stackoverflow.com/questions/947995/getting-an-ioexception-on-multiple-writes-to-a-file/948013#948013Comment by zonkflut on Getting an IOException on multiple writes to a file.zonkflut2009-06-04T00:37:32Z2009-06-04T00:37:32ZI removed the full file path was for brevity. And yes the only process that was accessing the file at all was my process, which is using a single Thread.http://stackoverflow.com/questions/942477/best-way-to-mount-a-linux-filesystem-on-windows-over-the-internetComment by zonkflut on Best way to mount a linux filesystem on windows over the internet?zonkflut2009-06-03T00:35:15Z2009-06-03T00:35:15Z+1 for the edit :)http://stackoverflow.com/questions/942477/best-way-to-mount-a-linux-filesystem-on-windows-over-the-internetComment by zonkflut on Best way to mount a linux filesystem on windows over the internet?zonkflut2009-06-03T00:34:37Z2009-06-03T00:34:37Zyou should open a question in Serverfault.com and then put a link to it in here. then close the question.http://stackoverflow.com/questions/942481/refactoring-advice-for-big-switches-in-c/942509#942509Comment by zonkflut on Refactoring advice for big switches in C#zonkflut2009-06-03T00:32:27Z2009-06-03T00:32:27ZYeah this is definately what I was thinking. This is also known as the Strategy Pattern as stated by rjohnston's answer