User Andrew Peters - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T15:26:45Z http://stackoverflow.com/feeds/user/608 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1527975/questions-regarding-entity-framework-ddd/1528294#1528294 -1 Answer by Andrew Peters for Questions regarding Entity Framework + DDD Andrew Peters 2009-10-06T21:52:18Z 2009-10-06T21:52:18Z <p>Here is a sample:</p> <p><a href="http://dataguidance.codeplex.com/" rel="nofollow">http://dataguidance.codeplex.com/</a></p> http://stackoverflow.com/questions/1527063/transactional-in-memory-edits-with-entity-framework/1527322#1527322 0 Answer by Andrew Peters for Transactional (In-Memory) Edits with Entity Framework Andrew Peters 2009-10-06T18:38:32Z 2009-10-06T18:38:32Z <p>You can implement IEditableObject on your entities.</p> <p>See <a href="http://www.codeplex.com/efcontrib/Wiki/View.aspx?title=Editable%20Business%20Objects&amp;referringTitle=PostSharp4EF" rel="nofollow">here</a> for an example.</p> http://stackoverflow.com/questions/7685/merge-sort-a-linked-list 1 Merge Sort a Linked List Andrew Peters 2008-08-11T11:43:27Z 2009-09-29T10:59:16Z <p>I was recently brushing up on some fundamentals and found merge sorting a linked list to be a pretty good challenge. If you have a good implementation then show it off here.</p> http://stackoverflow.com/questions/1377020/can-you-programmatically-detect-pluralizations-of-english-words-and-derive-the-s/1377204#1377204 1 Answer by Andrew Peters for Can you programmatically detect pluralizations of English words, and derive the singular form? Andrew Peters 2009-09-04T04:17:59Z 2009-09-04T04:17:59Z <p>You can take a look at <a href="http://andrewpeters.net/inflectornet" rel="nofollow">Inflector.net</a> - my port of Rails' inflection class.</p> http://stackoverflow.com/questions/1331017/check-if-insertss-or-updates-was-successful-in-entity-framework/1331453#1331453 0 Answer by Andrew Peters for Check if insert(s)s or update(s) was successful in Entity Framework Andrew Peters 2009-08-25T22:52:23Z 2009-08-25T22:52:23Z <p>Yes, if there is no exception you may assume that the statements executed successfully.</p> http://stackoverflow.com/questions/1329784/entity-framework-dynamic-sql/1329978#1329978 1 Answer by Andrew Peters for Entity Framework - dynamic sql Andrew Peters 2009-08-25T18:11:09Z 2009-08-25T18:11:09Z <p>A common pattern for handling optional search parameters is to do something like this:</p> <pre><code>string p = null; var q = from o in dataContext.Products where ((o.Name == p) || (p == null)) select o; </code></pre> http://stackoverflow.com/questions/563030/where-can-i-find-a-good-nhibernate-and-asp-net-mvc-reference-application/1317129#1317129 0 Answer by Andrew Peters for Where can I find a good NHibernate and ASP.NET MVC Reference Application Andrew Peters 2009-08-22T21:49:20Z 2009-08-22T21:49:20Z <p>Here is another one:</p> <p><a href="http://dataguidance.codeplex.com/" rel="nofollow">http://dataguidance.codeplex.com/</a></p> http://stackoverflow.com/questions/1195547/how-can-i-inject-behavior-into-entity-framework-object-constructors/1195716#1195716 2 Answer by Andrew Peters for How can I Inject Behavior into Entity Framework Object Constructors? Andrew Peters 2009-07-28T18:00:47Z 2009-07-28T18:00:47Z <p>Can you pass in the strategy at the time the calculation is performed?</p> <pre><code>myEntity.Calculate(myStrategy); </code></pre> <p>How about invert the relationship between the strategy and the entity?</p> <pre><code>myStrategy.Calculate(myEntity); </code></pre> <p>Or, DI the strategy using property injection?</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/498292#498292 4 Answer by Andrew Peters for Hidden Features of C#? Andrew Peters 2009-01-31T04:50:20Z 2009-07-23T18:51:26Z <p>Cool trick to emulate functional "wildcard" arguments (like '_' in Haskell) when using lambdas:</p> <pre><code>(_, b, __) =&gt; b.DoStuff(); // only interested in b here </code></pre> http://stackoverflow.com/questions/340218/entity-framework-and-asp-net-mvc/1096185#1096185 0 Answer by Andrew Peters for entity framework and asp.net mvc Andrew Peters 2009-07-08T05:08:05Z 2009-07-08T05:08:05Z <p>We're currently working on an EF 4.0 Reference Implementation using ASP.NET MVC at the front end. Check it out <a href="http://dataguidance.codeplex.com/" rel="nofollow">here</a> - We'd love to hear your feedback.</p> http://stackoverflow.com/questions/1044434/is-it-possible-to-set-the-actual-sql-that-the-entity-framework-provider-will-exec/1046746#1046746 0 Answer by Andrew Peters for Is it possible to set the actual SQL that the entity framework provider will execute? Andrew Peters 2009-06-25T23:49:15Z 2009-06-25T23:49:15Z <p>Yes, one way is with the <a href="http://msdn.microsoft.com/en-us/library/system.data.objects.objectquery.totracestring.aspx" rel="nofollow">ObjectQuery.ToTraceString</a> API.</p> http://stackoverflow.com/questions/1028697/ef-in-real-life-i-want-to-believe-does-anyone-have-good-pointers-to-non-trivial/1029528#1029528 1 Answer by Andrew Peters for EF in real life, I want to believe (Does anyone have good pointers to non-trivial EF 1.0(3.5) or 4.0 examples?)... Andrew Peters 2009-06-22T21:37:06Z 2009-06-22T21:37:06Z <p>See <a href="http://dataguidance.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=28998" rel="nofollow">http://dataguidance.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=28998</a> for the official EF v4 Reference Implementation (features ASP.NET MVC front end).</p> http://stackoverflow.com/questions/950491/looking-for-examples-of-asp-net-mvc-applications-with-the-entity-framework/951584#951584 1 Answer by Andrew Peters for Looking for examples of ASP.NET MVC applications with the Entity Framework Andrew Peters 2009-06-04T16:17:28Z 2009-06-22T21:34:35Z <p>The EF team, in conjunction with P&amp;P, are currently in the process of developing an EF (version 4) data access reference implementation that uses ASP.NET MVC as the front-end.</p> <p>The project will be made available iteratively on CodePlex here:</p> <p><a href="http://dataguidance.codeplex.com/" rel="nofollow">http://dataguidance.codeplex.com/</a></p> <p>We haven't yet made our first source drop but it will be happening within the next couple of weeks.</p> <p>UPDATE: We have now dropped code - please be advised that it should be considered alpha quality and is subject to change.</p> http://stackoverflow.com/questions/987305/eager-loading-aggregate-roots-with-entity-framework/987729#987729 2 Answer by Andrew Peters for Eager Loading aggregate roots with Entity Framework Andrew Peters 2009-06-12T16:43:53Z 2009-06-12T16:43:53Z <p>Try something like this instead:</p> <p>query = LoadDoors(query, x => x.Door);</p> <p>Where LoadX returns the result of calling Include.</p> http://stackoverflow.com/questions/710383/mocking-entity-framework-context/710639#710639 2 Answer by Andrew Peters for Mocking Entity Framework Context Andrew Peters 2009-04-02T16:58:21Z 2009-04-02T16:58:21Z <p>A well known way of doing this is to use the Repository pattern. This acts as a layer over your concrete data access implementation and provides a place to inject test doubles.</p> http://stackoverflow.com/questions/660599/rails-per-request-hash/660731#660731 0 Answer by Andrew Peters for Rails per-request hash? Andrew Peters 2009-03-19T01:12:54Z 2009-03-19T01:12:54Z <p>Have you considered flash? It uses Session but is automatically cleared.</p> http://stackoverflow.com/questions/645518/how-can-i-hide-a-panel-that-is-on-a-splitcontainer/645524#645524 -1 Answer by Andrew Peters for How can I hide a panel that is on a SplitContainer? Andrew Peters 2009-03-14T06:27:56Z 2009-03-14T06:27:56Z <p>Try setting panel2.Visible = false.</p> http://stackoverflow.com/questions/644904/how-to-speed-up-vs2008-with-resharper-startup/644914#644914 2 Answer by Andrew Peters for How to speed up VS2008 with Resharper startup? Andrew Peters 2009-03-13T22:56:27Z 2009-03-13T22:56:27Z <p>I think the best way would be to use an SSD drive or really fast disk drive. I don't have one though :-(</p> http://stackoverflow.com/questions/644747/autofac-in-web-applications-where-should-i-store-the-container-for-easy-access/644753#644753 1 Answer by Andrew Peters for Autofac in web applications, where should I store the container for easy access Andrew Peters 2009-03-13T21:52:29Z 2009-03-13T21:52:29Z <p>The usual way of doing this is to store the container in a static variable in your Global app class.</p> http://stackoverflow.com/questions/559846/asp-net-mvc-updatemodel-empty-property/640397#640397 4 Answer by Andrew Peters for ASP.NET MVC UpdateModel empty property Andrew Peters 2009-03-12T20:41:46Z 2009-03-13T04:24:48Z <p>I just discovered this behavior (by accident thanks to a check constraint) and I think it is a mistake. I wonder how many devs are now inadvertently saving empty strings into their db instead of null? :-)</p> <p>Anyway, I'm going to explore this a bit more and see if there is a better solution.</p> <p>Update:</p> <p>Here is a solution:</p> <pre><code>using System.ComponentModel; using System.Web.Mvc; namespace CustomerWebsite.Mvc { public sealed class EmptyStringToNullModelBinder : DefaultModelBinder { protected override void SetProperty(ControllerContext controllerContext, ModelBindingContext bindingContext, PropertyDescriptor propertyDescriptor, object value) { if ((value != null) &amp;&amp; (value.GetType() == typeof(string) &amp;&amp; ((string)value).Length == 0)) { value = null; } base.SetProperty(controllerContext, bindingContext, propertyDescriptor, value); } } } </code></pre> <p>And in Application_Start put this:</p> <pre><code>ModelBinders.Binders.DefaultBinder = new EmptyStringToNullModelBinder(); </code></pre> http://stackoverflow.com/questions/641365/c-reuse-event-handler-good-practice/641441#641441 0 Answer by Andrew Peters for c# reuse event handler good practice Andrew Peters 2009-03-13T04:16:34Z 2009-03-13T04:16:34Z <p>You should make a User Control that encapsulates your custom Grid. That way, all of your behavior will be encapsulated and reusable.</p> http://stackoverflow.com/questions/638391/entity-framework-get-currentcontext/639279#639279 2 Answer by Andrew Peters for Entity Framework get CurrentContext Andrew Peters 2009-03-12T15:56:28Z 2009-03-12T15:56:28Z <p>You need to pass the context to this method, or, better yet, rather than pass in width and height, pass in the size object itself.</p> http://stackoverflow.com/questions/609257/linq-to-entity-framework-selecting-whole-tables/609270#609270 4 Answer by Andrew Peters for Linq To Entity Framework selecting whole tables Andrew Peters 2009-03-04T04:50:19Z 2009-03-04T04:50:19Z <p>Remove the .AsEnumerable()s from the query as these are preventing the entire query being evaluated on the server.</p> http://stackoverflow.com/questions/605012/how-do-i-do-a-contains-in-dlinq-with-a-list-of-items/605362#605362 1 Answer by Andrew Peters for How do I do a .Contains() in dlinq with a list of items? Andrew Peters 2009-03-03T06:42:53Z 2009-03-03T06:42:53Z <p>One way is to dynamically build a query as outlined here:</p> <p><a href="http://andrewpeters.net/2007/04/24/dynamic-linq-queries-contains-operator/" rel="nofollow">http://andrewpeters.net/2007/04/24/dynamic-linq-queries-contains-operator/</a></p> http://stackoverflow.com/questions/595920/ado-net-entity-framework-i-cant-see-foreign-key-property-in-model/596009#596009 2 Answer by Andrew Peters for ADO.NET Entity Framework i cant see Foreign Key Property in Model Andrew Peters 2009-02-27T18:33:49Z 2009-02-27T18:33:49Z <p>EF v1 hides foreign keys because it views them as persistence artifacts not important to the domain model. See <a href="http://www.thedatafarm.com/blog/2007/09/11/EntityDataModelAssociationsWheresMyForeignKey.aspx" rel="nofollow">here</a> for a discussion.</p> <p>EF v2, shipping with .NET 4, will include much better support for foreign keys in the model.</p> http://stackoverflow.com/questions/589096/parsing-sql-code-in-c/589216#589216 1 Answer by Andrew Peters for Parsing SQL code in C# Andrew Peters 2009-02-26T05:25:22Z 2009-02-26T05:25:22Z <p>Try <a href="http://antlr.org" rel="nofollow">ANTLR</a> - There are a bunch of SQL grammars on there.</p> http://stackoverflow.com/questions/588396/can-a-return-statement-prevent-a-using-statement-from-closing-a-connection-to-a-d/588410#588410 1 Answer by Andrew Peters for Can a return statement prevent a using statement from closing a connection to a database? Andrew Peters 2009-02-25T23:32:53Z 2009-02-25T23:32:53Z <p>No, connection.Close will always be called because internally <em>using</em> puts it in a try/finally block.</p> <p>You also may want to consider connection pooling. Try wrapping your code in a TransactionScope.</p> http://stackoverflow.com/questions/575190/is-there-an-in-memory-provider-for-entity-framework/575459#575459 1 Answer by Andrew Peters for Is there an in-memory provider for Entity Framework? Andrew Peters 2009-02-22T18:54:53Z 2009-02-22T18:54:53Z <p>A better approach here might be to use the Repository pattern to encapsulate your EF code. When testing your services you can use mocks or fakes. When testing your repositories you will want to hit the real DB to ensure that you are getting the results you expect.</p> http://stackoverflow.com/questions/433022/adding-a-business-layer-to-ado-net-entity-framework/568284#568284 -1 Answer by Andrew Peters for Adding a Business Layer to ADO .NET Entity Framework Andrew Peters 2009-02-20T04:30:08Z 2009-02-20T04:30:08Z <p>Hi Bradley,</p> <p>One way to do this would be like so:</p> <ol> <li>Define your AllBankAccounts property (possibly even make it private).</li> <li>Define the BankAccounts property in the partial Person class. The property can be expressed in terms of AllBankAccounts using LINQ, i.e. AllBankAccounts.Where(a => !a.IsFrozen)</li> <li>Define the FrozenBankAccounts property in the partial Person class like step 2.</li> </ol> <p>Hope that helps.</p> http://stackoverflow.com/questions/554731/ado-net-entity-framework-generates-unexpected-problem-inserts/567103#567103 1 Answer by Andrew Peters for ADO.NET Entity Framework generates unexpected, problem INSERTs Andrew Peters 2009-02-19T20:54:15Z 2009-02-19T20:54:15Z <p>I haven't had a detailed look at the code but the first thing to consider is that you shouldn't need to call DeleteObject at every level of your hierarchy. EF like other O/RMs tracks objects and their associations for you. </p> <p>Let's say, for example, that you have a parent->child 1..* relationship. If you query the parent, remove a child object from the parents Children collection and then call SaveChanges(), EF will generate the appropriate DELETE SQL statements for you - You do not need to track this yourself.</p> <p>So, a better way to achieve your scenario would be to do this:</p> <ol> <li>Query the object hierarchy out of EF.</li> <li>Bind that to your UI. Let your UI modify the in-memory objects as you see fit.</li> <li>When you are done, call SaveChanges and let the EF figure out what to do.</li> </ol> <p>Let me know if that helps.</p> http://stackoverflow.com/questions/1527063/transactional-in-memory-edits-with-entity-framework/1527322#1527322 Comment by Andrew Peters on Transactional (In-Memory) Edits with Entity Framework Andrew Peters 2009-10-06T21:53:54Z 2009-10-06T21:53:54Z Implementing it by hand is pretty straightforward. I would try that first. http://stackoverflow.com/questions/710383/mocking-entity-framework-context/710639#710639 Comment by Andrew Peters on Mocking Entity Framework Context Andrew Peters 2009-08-25T16:20:17Z 2009-08-25T16:20:17Z The ObjectContext should usually injected into repositories as a dependency - Repository and Unit of Work are orthogonal. http://stackoverflow.com/questions/1044434/is-it-possible-to-set-the-actual-sql-that-the-entity-framework-provider-will-exec/1046746#1046746 Comment by Andrew Peters on Is it possible to set the actual SQL that the entity framework provider will execute? Andrew Peters 2009-06-26T05:02:13Z 2009-06-26T05:02:13Z Sorry, misread that as &quot;see&quot;. Yes, if EF v1 you can use stored procs to execute arbitrary SQL. See: <a href="http://msdn.microsoft.com/en-us/library/bb399203.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/&hellip;</a> http://stackoverflow.com/questions/987305/eager-loading-aggregate-roots-with-entity-framework/987729#987729 Comment by Andrew Peters on Eager Loading aggregate roots with Entity Framework Andrew Peters 2009-06-15T19:22:07Z 2009-06-15T19:22:07Z @Bertvan because ReferenceEquals(q, q.Include(&quot;Foo&quot;)) == false http://stackoverflow.com/questions/778726/how-do-you-avoid-duplication-of-validation-on-the-server-and-client-side/778746#778746 Comment by Andrew Peters on How do you avoid duplication of validation on the server and client-side? Andrew Peters 2009-04-22T19:29:30Z 2009-04-22T19:29:30Z LOL - And +2 votes to boot! http://stackoverflow.com/questions/35322/bypass-forms-authentication-auto-redirect-to-login-how-to/35518#35518 Comment by Andrew Peters on Bypass Forms Authentication auto redirect to login, How to? Andrew Peters 2009-04-16T17:00:33Z 2009-04-16T17:00:33Z This does not help for the reasons outlined by TheDeeno. http://stackoverflow.com/questions/732573/best-design-practices-for-net-architecture-with-linq-to-sql-dal-necessary-can/732583#732583 Comment by Andrew Peters on Best design practices for .NET architecture with LINQ to SQL (DAL necessary? Can we truly use POCOs? Design pattern to adopt?) Andrew Peters 2009-04-09T05:04:25Z 2009-04-09T05:04:25Z Yes, the parallel model architecture in MVC Storefront <i>is</i> silly. I would go so far as to call it an anti-pattern. If you want pure PI then use NHibernate or EF v2 when it comes out. Otherwise, you can get close to POCO with L2S - EntityRef/Collection is the only thing you need to keep. http://stackoverflow.com/questions/280239/asp-net-mvc-with-entity-framework/280255#280255 Comment by Andrew Peters on ASP.NET MVC with Entity Framework Andrew Peters 2009-03-31T17:37:50Z 2009-03-31T17:37:50Z LOL dude. It just has to be &quot;explicit&quot; <a href="http://blogs.msdn.com/jkowalski/archive/2008/05/12/transparent-lazy-loading-for-entity-framework-part-1.aspx" rel="nofollow">blogs.msdn.com/jkowalski/archive/&hellip;</a> http://stackoverflow.com/questions/280239/asp-net-mvc-with-entity-framework/280255#280255 Comment by Andrew Peters on ASP.NET MVC with Entity Framework Andrew Peters 2009-03-31T01:01:35Z 2009-03-31T01:01:35Z No, this a bad approach. It makes the Controller hard to test and also means the unit of work is not available outside of the Controller. The Session-per-request pattern mentioned below is better. EF v1 does support lazy loading - it just has to be explicit. http://stackoverflow.com/questions/641365/c-reuse-event-handler-good-practice/641441#641441 Comment by Andrew Peters on c# reuse event handler good practice Andrew Peters 2009-03-13T15:53:20Z 2009-03-13T15:53:20Z In this case it is being used 4 times - hence the code duplication. http://stackoverflow.com/questions/638391/entity-framework-get-currentcontext/639279#639279 Comment by Andrew Peters on Entity Framework get CurrentContext Andrew Peters 2009-03-12T16:10:14Z 2009-03-12T16:10:14Z Consider this: var myEntity = new MyEntity(); myEntity.AssignSize(1,2); This is just one problem with coupling an entity to a particular context. http://stackoverflow.com/questions/605012/how-do-i-do-a-contains-in-dlinq-with-a-list-of-items/605362#605362 Comment by Andrew Peters on How do I do a .Contains() in dlinq with a list of items? Andrew Peters 2009-03-03T17:37:43Z 2009-03-03T17:37:43Z Basically, you need to build a lambda expression of the form: l =&gt; l.site_title == list[0] || l.site_title == list[1] ... http://stackoverflow.com/questions/605012/how-do-i-do-a-contains-in-dlinq-with-a-list-of-items/605362#605362 Comment by Andrew Peters on How do I do a .Contains() in dlinq with a list of items? Andrew Peters 2009-03-03T17:35:26Z 2009-03-03T17:35:26Z Sorry, that code is pretty old. Try Expression.Lambda http://stackoverflow.com/questions/554731/ado-net-entity-framework-generates-unexpected-problem-inserts/567103#567103 Comment by Andrew Peters on ADO.NET Entity Framework generates unexpected, problem INSERTs Andrew Peters 2009-02-20T17:30:56Z 2009-02-20T17:30:56Z To delete a child object, it is sufficient to remove it from the object graph. Similarly, to add a new object, add it to the object graph. EF is tracking the graph so will know what to do when you call SaveChanges. Perhaps try writing a unit test outside of your UI to get a feel for how this works. http://stackoverflow.com/questions/313/net-migrations-engine/5550#5550 Comment by Andrew Peters on .NET Migrations Engine Andrew Peters 2009-02-18T17:26:19Z 2009-02-18T17:26:19Z Yep, unfortunately this happens all the time on SO :-/