User DamienG - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T14:38:12Zhttp://stackoverflow.com/feeds/user/5720http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1748697/in-memory-datacontext/1760887#17608871Answer by DamienG for In Memory DataContextDamienG2009-11-19T04:31:57Z2009-11-19T04:31:57Z<p>You can only do this if you are prepared to wrap access to the datacontext with your own interface. Then for rapid prototyping you can write your own datacontext alternative that implements this interface and instead uses lists and LINQ to Objects to perform in-memory queries.</p>
http://stackoverflow.com/questions/1134044/how-can-i-do-distinct-of-dates-in-linq-to-entities/1589422#15894221Answer by DamienG for how can I do, distinct of Dates in LINQ to ENTITIES?DamienG2009-10-19T15:36:35Z2009-10-19T15:36:35Z<p>The problem is you are applying distinct not on a date column here but on an anonymous type - this will never work as the type has no concept of equality as it has not been defined for this type.</p>
http://stackoverflow.com/questions/997617/linq-to-sql-derived-to-derived-association/1589391#15893910Answer by DamienG for Linq to Sql, derived to derived associationDamienG2009-10-19T15:31:39Z2009-10-19T15:31:39Z<p>LINQ to SQL only supports table-per-heirarchy, not table-per-type.</p>
http://stackoverflow.com/questions/1427624/workaround-for-linq-to-sql-entity-identity-caching-and-compiled-query-bug/1538658#15386581Answer by DamienG for Workaround for LINQ to SQL Entity Identity Caching and Compiled Query Bug?DamienG2009-10-08T15:48:21Z2009-10-08T20:35:03Z<p>Looks like a bug - there have been a number in this area.</p>
<p>As a work-around I wouldn't create a compiled query for such a small/simple operation - the real benefit of compiled query is for large queries that take a lot of time to process into TSQL.</p>
<p>Update: This is a bug and was resolved as will not fix.</p>
http://stackoverflow.com/questions/1408546/sql-express-2008-not-committing-linq-to-sql-writes-in-sequence/1538672#15386720Answer by DamienG for SQL Express 2008 Not committing LINQ to SQL writes in sequence?DamienG2009-10-08T15:50:17Z2009-10-08T15:50:17Z<p>When you say you have processed them in the right order do you mean the order in which you told LINQ to SQL to do something? The reason is that LINQ to SQL internally reorders the operations.</p>
<p>What are you logging? The LINQ to SQL datacontext log property?</p>
http://stackoverflow.com/questions/1124023/why-is-hasloadedorassignedvalue-property-set-to-true/1538646#15386461Answer by DamienG for Why is HasLoadedOrAssignedValue Property set to true?DamienG2009-10-08T15:45:20Z2009-10-08T15:45:20Z<p>The problem is something is looking at the Image property and causing it to load - perhaps even the debugger.</p>
<p>Set a breakpoint in the Product.Image property and see what path is causing it.</p>
http://stackoverflow.com/questions/1538592/linq-to-entities-query-hitting-db-twice/1538603#15386031Answer by DamienG for Linq to Entities query hitting db twiceDamienG2009-10-08T15:38:46Z2009-10-08T15:38:46Z<p>Is ent.Inspectors an IEnumerable containing two items?</p>
http://stackoverflow.com/questions/1520945/nlog-to-output-db-out/1535504#15355040Answer by DamienG for NLOG to output db.outDamienG2009-10-08T03:38:55Z2009-10-08T03:38:55Z<p>You just need a class to act as a TextWriter that LINQ to SQL needs to dispatch it via the method you want, e.g.</p>
<pre><code>db.Log = new ActionTextWriter(s => logger.Debug(s));
</code></pre>
<p>Here is a little text writer I wrote that takes a delegate and dispatches to that so you use the code above. You would probably want to change this class so it took a logger, did some processing/splitting on the text and then dispatched it out to NLog.</p>
<pre><code>class ActionTextWriter : TextWriter {
private Action<string> action;
public ActionTextWriter(Action<string> action) {
this.action = action;
}
public override void Write(char[] buffer, int index, int count) {
Write(new string(buffer, index, count));
}
public override void Write(string value) {
action.Invoke(value);
}
public override Encoding Encoding {
get { return System.Text.Encoding.Default; }
}
}
</code></pre>
http://stackoverflow.com/questions/1533082/can-linq-to-sql-be-aware-of-similarities-of-two-tables/1535471#15354711Answer by DamienG for Can Linq-To-Sql be aware of similarities of two tables?DamienG2009-10-08T03:28:36Z2009-10-08T03:28:36Z<p>One option would be to create a view on the server that unioned the results if it's for query only.</p>
<p>For update scenario's your more stuck as it wouldn't be possible for LINQ to SQL to know which table to use...</p>
http://stackoverflow.com/questions/1535119/is-it-possible-to-extend-visual-studio-linq-to-sql-designer-to-support-geometry-t/1535457#15354571Answer by DamienG for Is it possible to extend Visual Studio Linq-to-Sql designer to support geometry types?DamienG2009-10-08T03:23:35Z2009-10-08T03:23:35Z<p>Even if you made the designer support it the runtime won't.</p>
http://stackoverflow.com/questions/1499015/linq-caching-data-values-major-concurrency-problem/1507027#15070271Answer by DamienG for Linq caching data values - major concurrency problem?DamienG2009-10-01T23:29:11Z2009-10-01T23:29:11Z<p>LINQ to SQL uses the identity map design pattern which means that it will always return the same instance of an object for it's given primary key (unless you turn off object tracking).</p>
<p>The solution is simply either use a second data context if you don't want it to interfere with the first instance or refresh the first instance if you do.</p>
http://stackoverflow.com/questions/1485536/does-linq-to-entities-4-0-have-fulltext-capabilities/1507000#15070002Answer by DamienG for Does Linq to Entities 4.0 have Fulltext capabilities?DamienG2009-10-01T23:23:22Z2009-10-01T23:23:22Z<p>There are no specific operators or support for full text directly in EF v4.0.</p>
http://stackoverflow.com/questions/1358504/optimizing-stored-procedures-so-they-will-be-processed-properly-by-linq2sql/1359436#13594364Answer by DamienG for Optimizing Stored Procedures so they will be processed properly by Linq2SQLDamienG2009-08-31T21:08:02Z2009-08-31T21:08:02Z<p>This is not actually a limitation of LINQ to SQL but rather of SQL Server which can not always tell a client what the return type would be without actually running it when it contains temporary tables, cursors or dynamic SQL.</p>
<p>As running it with invalid parameters could be potentially catastrophic it doesn't try.</p>
<p>You can either set it by hand using the designer or if it is <em>absolutely okay</em> to run the stored procedure with invalid data (i.e. it is purely passive) then you can add SET FMTOPT OFF to the start of the stored procedure.</p>
http://stackoverflow.com/questions/1331889/is-there-such-thing-as-a-technical-manual-that-is-not-inherently-staggeringly-dul/1331915#13319151Answer by DamienG for Is there such thing as a technical manual that is not inherently staggeringly dull to read?DamienG2009-08-26T01:33:48Z2009-08-26T01:33:48Z<p>I remember a great book when learning Delphi called The Delphi Programming Explorer narrated by a fictional detective who was programming between cases.</p>
<p>Fun, but rather difficult to get hold of.</p>
http://stackoverflow.com/questions/1325129/getting-rows-from-a-sql-table-matching-a-dictionary-using-linq/1325527#13255270Answer by DamienG for Getting rows from a SQL table matching a dictionary using LINQDamienG2009-08-25T00:49:41Z2009-08-25T00:49:41Z<p>Another option is to consider how you populate m_authors and whether you can include that in the query as a query element itself so it turns into a server-side join/subselect.</p>
http://stackoverflow.com/questions/1323068/why-does-visual-studio-ask-give-option-to-discard-in-memory-changes/1325522#13255220Answer by DamienG for Why does visual studio ask give option to discard in-memory changes?DamienG2009-08-25T00:45:51Z2009-08-25T00:45:51Z<p>The easiest way to prevent this happening is not to start modifying the code before you check-out the file.</p>
http://stackoverflow.com/questions/1021274/linqtosql-mapping-exception-when-using-abstract-base-classes/1169342#11693422Answer by DamienG for LinqToSql - mapping exception when using abstract base classesDamienG2009-07-23T02:50:23Z2009-07-23T02:50:23Z<p>This looks like a bug - we special case Single on a primary key to do a local lookup but it looks like this code path is not grabbing the metadata properly.</p>
<p>The 1=1 hack will mean it goes via a normal database round-trip but really a bug should be filed...</p>
http://stackoverflow.com/questions/1143915/what-is-the-difference-between-drop-table-and-delete-table-in-sql-server/1143924#11439242Answer by DamienG for What is the difference between drop table and delete table in SQL Server?DamienG2009-07-17T15:16:59Z2009-07-17T15:16:59Z<p>One of these performs a delete, the other provides you with the TSQL script to do a delete so you can modify or use it elsewhere.</p>
http://stackoverflow.com/questions/77507/what-are-your-favourite-zx-spectrum-development-tools/388423#3884230Answer by DamienG for What are your favourite ZX Spectrum development tools?DamienG2008-12-23T08:42:49Z2008-12-23T08:42:49Z<p>There are some good PC-based packages too. For Sinclair BASIC based development the excellent BASin package for Windows gives you a good syntax highlighter, runtime virtual machine, built-in editors for fonts and UDG's etc.</p>
http://stackoverflow.com/questions/387406/dlinq-entities-being-inserted-without-insertonsubmit/388417#3884171Answer by DamienG for DLINQ- Entities being inserted without .InsertOnSubmit(...)?!DamienG2008-12-23T08:40:58Z2008-12-23T08:40:58Z<p>Think of the relationship as having two sides. When you set one side of the relationship the other side needs to be updated so in the case above as well as setting the ProductOptionCategory it is effectively adding the new object to the ProductOptions relationship on the laminate ProductOptionCategory side.</p>
<p>The work-around is as you have already discovered and to set the underlying foreign key instead so LINQ to SQL will not track the objects in the usual way and require implicit indication it should persist the object.</p>
<p>Of course the best solution for performance would be to determine from the source data which objects you don't want to add and never create the instance in the first place.</p>
http://stackoverflow.com/questions/376174/linqtosql-will-not-allow-updating-of-fields-as-it-casts-them-as-read-only/376792#3767922Answer by DamienG for linqtosql will not allow updating of fields as it casts them as read onlyDamienG2008-12-18T03:01:57Z2008-12-18T03:01:57Z<p>When you select just individual fields you are creating an anonymous type on the fly that is no longer part of the ORM's change tracking/update mechanism.</p>
<p>You will need to change the select part to be "Select lqp" for this to work.</p>
http://stackoverflow.com/questions/365222/linqtosql-overriding-insert-with-inner-classes-c/366876#3668761Answer by DamienG for LinqToSql overriding insert with inner classes C#DamienG2008-12-14T19:25:30Z2008-12-14T19:25:30Z<p>The InsertX/UpdateX/DeleteX methods are called after LINQ to SQL has determined which objects will be included in SubmitChanges.</p>
<p>You would have been getting a timeout using two DataContext most likely because of locking issues between the two transactions.</p>
<p>I can't clearly make out what you are trying to achieve here - normally LINQ to SQL manages the child relationships itself - what are PlainIngredients and TextIngredients?</p>
http://stackoverflow.com/questions/354245/linq-to-sql-compiledquery-compile-with-update-delete-insert/355195#3551953Answer by DamienG for LINQ-to-SQL CompiledQuery.Compile() with Update, Delete, Insert?DamienG2008-12-10T06:03:29Z2008-12-10T06:03:29Z<p>I think of the three only insert would make sense to be able to compile and re-use because delete is trivially simple (DELETE FROM Table WHERE Key...) and UPDATE only updates the fields that have changed and so varies per update operation.</p>
<p>[)amien</p>
http://stackoverflow.com/questions/353142/how-do-i-use-sqlmetal-to-generate-an-internal-not-public-data-context/355193#3551930Answer by DamienG for How do I use sqlmetal to generate an internal (not public) data contextDamienG2008-12-10T06:00:45Z2008-12-10T06:00:45Z<p>You could try using my <a href="http://damieng.com/blog/2008/09/14/linq-to-sql-template-for-visual-studio-2008" rel="nofollow">LINQ to SQL template</a> that provides a drop-in replacement for the DBML to C#/VB.NET code generation process that you can completely customize.</p>
<p>[)amien</p>
http://stackoverflow.com/questions/275233/auto-increment-a-primary-key-in-the-linq-to-sql-datacontext-insert-partial-meth/276300#2763001Answer by DamienG for Auto-increment a primary key in the LINQ to SQL DataContext "Insert" partial methodDamienG2008-11-09T18:48:22Z2008-11-09T18:48:22Z<p>I would really recommend letting SQL Server do the incremental numbering. The above approach even if you do get it working would fail under load in a multi-user scenario where they both get the same ID and try to insert the same one.</p>
http://stackoverflow.com/questions/269594/linqtosql-producing-different-sql-queries-on-different-machines-for-identical-cod/269928#2699280Answer by DamienG for LinqToSql Producing Different Sql Queries on Different Machines for Identical CodeDamienG2008-11-06T19:18:58Z2008-11-06T19:18:58Z<p>Sounds like the LINQ to SQL classes (DBML and/or associated code generation) between the two is not the same - specifically how the association is defined between these two tables.</p>
http://stackoverflow.com/questions/263612/sql-2-linq-query-called-by-databinding-completely-freezing-wpf-application/266815#2668152Answer by DamienG for SQL 2 LINQ query (called by databinding) completely freezing WPF applicationDamienG2008-11-05T21:42:04Z2008-11-05T21:42:04Z<p>Having a property open a database connection and run a query is not a good pattern. </p>
<p>A better approach would be to query a set of objects from LINQ to SQL and bind those to the WPF control instead.</p>
http://stackoverflow.com/questions/249006/linq2sql-database-providers/266807#2668070Answer by DamienG for LINQ2SQL Database providersDamienG2008-11-05T21:40:10Z2008-11-05T21:40:10Z<p>Entity Framework has support for multiple database providers. There are no plans to expose or implement additional LINQ to SQL database providers.</p>
http://stackoverflow.com/questions/265524/how-can-i-change-the-updatecheck-attribute-of-a-linq-2-sql-column-at-runtime/266046#2660460Answer by DamienG for How can I change the UpdateCheck Attribute of a LINQ 2 SQL Column at runtime ?DamienG2008-11-05T17:59:38Z2008-11-05T17:59:38Z<p>UpdateCheck is not used for Insert operations, only for update.</p>
http://stackoverflow.com/questions/262581/why-does-sql-servers-gui-mangle-my-views/263896#2638960Answer by DamienG for Why does SQL Server's GUI mangle my views?DamienG2008-11-04T23:39:31Z2008-11-04T23:39:31Z<p>It's the result of the view GUI parsing the SQL into it's own internal DOM style format and then writing it back out - much in the same way that HTML editors take in XHTML and emit stuff differently to how you wanted it :(</p>
http://stackoverflow.com/questions/1758214/linq-to-sql-exception-with-attach-cannot-add-an-entity-with-a-key-that-is-alre/1758304#1758304Comment by DamienG on LINQ To SQL exception with Attach(): Cannot add an entity with a key that is alredy in useDamienG2009-11-19T04:28:07Z2009-11-19T04:28:07ZAs JustLoren says Attach is there for giving a context an entity it doesn't yet have - it can't be used to replace one. In a typical situation if you are getting an object back it is sometime later and will be attached to a new data context.http://stackoverflow.com/questions/1587833/how-does-the-entity-framework-and-the-linqextender-project-differ/1587850#1587850Comment by DamienG on How does the Entity Framework and the LINQExtender project differ?DamienG2009-10-19T15:29:37Z2009-10-19T15:29:37ZFor Entity Framework to be able to access a database you need an ADO.NET Provider that supports 3.5 features - i.e. specific EF support. You can't just throw CSV at it.http://stackoverflow.com/questions/1427624/workaround-for-linq-to-sql-entity-identity-caching-and-compiled-query-bug/1538658#1538658Comment by DamienG on Workaround for LINQ to SQL Entity Identity Caching and Compiled Query Bug?DamienG2009-10-09T20:29:39Z2009-10-09T20:29:39ZIn this case you might want to measure it - I'd be surprised if the overhead of parsing this query is any more efficient than the compiled query route.http://stackoverflow.com/questions/1408546/sql-express-2008-not-committing-linq-to-sql-writes-in-sequence/1538672#1538672Comment by DamienG on SQL Express 2008 Not committing LINQ to SQL writes in sequence?DamienG2009-10-09T20:28:43Z2009-10-09T20:28:43ZThe sequence you requested is always reordered as it has to create objects before it can assign references to them etc. I'm not sure how this is causing you issues unless you have triggers?http://stackoverflow.com/questions/1124023/why-is-hasloadedorassignedvalue-property-set-to-true/1538646#1538646Comment by DamienG on Why is HasLoadedOrAssignedValue Property set to true?DamienG2009-10-09T20:26:26Z2009-10-09T20:26:26ZIf you take a look at the code you'll see that the property accessor is a lazy-load implementation. When you access the property it heads to the database with the foreign key so it can create the object and assign it to the property. Once it has done this it doesn't like you changing the foreign key because then there is an inconsistency as the FK and entity property no longer match.http://stackoverflow.com/questions/1513778/is-it-a-bad-idea-to-jump-into-linq-to-sql-now/1513795#1513795Comment by DamienG on Is it a bad idea to jump into LINQ to SQL now?DamienG2009-10-08T15:41:18Z2009-10-08T15:41:18ZLINQ to SQL has not reached the end of it's life so you're hardly "laying out the facts". The fact is Entity Framework is getting more resources than LINQ to SQL.http://stackoverflow.com/questions/1535119/is-it-possible-to-extend-visual-studio-linq-to-sql-designer-to-support-geometry-t/1535457#1535457Comment by DamienG on Is it possible to extend Visual Studio Linq-to-Sql designer to support geometry types?DamienG2009-10-08T15:18:36Z2009-10-08T15:18:36ZUnfortunately not.http://stackoverflow.com/questions/1533082/can-linq-to-sql-be-aware-of-similarities-of-two-tables/1535505#1535505Comment by DamienG on Can Linq-To-Sql be aware of similarities of two tables?DamienG2009-10-08T04:23:12Z2009-10-08T04:23:12ZThis is not true - the table name and class name can be different.http://stackoverflow.com/questions/1510997/linq-function-based-on-stored-procedure-which-does-count-returns-null/1511228#1511228Comment by DamienG on Linq function based on stored procedure which does count(*) returns nullDamienG2009-10-03T06:06:02Z2009-10-03T06:06:02ZIt might be related to a bug we had in the designer that was fixed in 4.0.http://stackoverflow.com/questions/1358504/optimizing-stored-procedures-so-they-will-be-processed-properly-by-linq2sql/1359436#1359436Comment by DamienG on Optimizing Stored Procedures so they will be processed properly by Linq2SQLDamienG2009-10-01T23:32:02Z2009-10-01T23:32:02ZAvoiding the Exec sproc would be a good start - it can easily lead to SQL injection and hurts performance just as much as dynamic SQL.
Without seeing the SP itself it is difficult to guess how it could be rewritten.http://stackoverflow.com/questions/1504195/linq-to-entities-left-joinComment by DamienG on Linq to entities Left JoinDamienG2009-10-01T23:22:31Z2009-10-01T23:22:31ZFor what it's worth DefaultIfEmpty is included in EF .NET 4.0.http://stackoverflow.com/questions/1325120/linq-to-sql-for-a-new-project/1325314#1325314Comment by DamienG on Linq to SQL for a new projectDamienG2009-08-25T00:52:05Z2009-08-25T00:52:05ZThere are some additional complexities around the update/insert syntax , change tracking and concurrency conflict resolution that shouldn't be dismissed.http://stackoverflow.com/questions/520462/linq-to-sql-and-collection-operations/520472#520472Comment by DamienG on Linq to SQL and Collection operations DamienG2009-07-23T02:38:13Z2009-07-23T02:38:13ZExactly what error are you getting with this version? (It can't be the same as the ContainsKey one and 2005/2008 providers can't independently generate "no supported translation" exceptions).http://stackoverflow.com/questions/1166913/linq-to-sql-query-using-methods/1166945#1166945Comment by DamienG on linq to sql query using methodsDamienG2009-07-23T02:33:08Z2009-07-23T02:33:08ZThis isn't even LINQ to SQL specific - in the first case the compiler produces an expression tree that a LINQ provider can translate. In the second case it produces the Count part as IL which would require runtime reverse-engineering/decompilation before it could try and figure out what was going on and translate it.http://stackoverflow.com/questions/86685/debugging-linq-to-sql-submitchanges/104316#104316Comment by DamienG on Debugging LINQ to SQL SubmitChanges()DamienG2009-07-17T22:12:03Z2009-07-17T22:12:03ZSomebody had created an association from one entity to another where the foreign end was not the primary key. This is a bug in 3.5 SP1.