Do any OR Mappers provide Asynchronous Methods? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T07:32:58Z http://stackoverflow.com/feeds/question/501845 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/501845/do-any-or-mappers-provide-asynchronous-methods 3 Do any OR Mappers provide Asynchronous Methods? Harry 2009-02-01T23:40:06Z 2009-10-05T17:12:54Z <p>Do any .Net O/R (object/Relational) Mappers provide Asynchronous methods out of the box?</p> <p>I don't want to have to write the boiler plate for the asynchronous method if possible</p> <p>I have rolled my own DAL with Asynchronous methods using the CCR framework. The CCR basically demands that I don't block any of it's threads waiting for IO responses.</p> <p>The good part about my solution so far is that it is down to the bare minimum. But as this project grows in terms of scale and functionality, I am facing the mildly daunting task of maintaining raw SQL queries and boiler plate code.</p> <p>BUT on the other hand if the O/R mapper Asynchronous methods are really just a messy hack that adds oddles of complexity I am not better off.</p> <p>Please don't focus on alternatives to Asynchronous programming.</p> http://stackoverflow.com/questions/501845/do-any-or-mappers-provide-asynchronous-methods/606143#606143 0 Answer by Robert MacLean for Do any OR Mappers provide Asynchronous Methods? Robert MacLean 2009-03-03T12:05:00Z 2009-03-03T12:05:00Z <p><a href="http://www.hibernate.org/" rel="nofollow">Nhibernate</a> seems to be relatively easier to implement Async than LinqToSQL. See <a href="http://www.codeproject.com/KB/miscctrl/AsyncDataloading.aspx?display=PrintAll" rel="nofollow">this</a></p> <p>Personally what I would do though is use what I am comfortable with (as I haven't used NHibernate I would worry about the learning curve and potential issues so I would rather use something like LINQtoSQL or bespoke data access layer) and wrap it in it's own web service of <a href="http://www.microsoft.com/DOWNLOADS/details.aspx?FamilyID=56278fde-b708-469c-987e-ded9c6c5e580&amp;displaylang=en" rel="nofollow">WCF LOB Adapter</a>.</p> <p>If you really didn't want to code that yourself you could just use <a href="http://msdn.microsoft.com/en-us/data/bb931106.aspx" rel="nofollow">ADO.NET Data Services</a> which does basically that for the Entity Framework.</p> http://stackoverflow.com/questions/501845/do-any-or-mappers-provide-asynchronous-methods/606153#606153 1 Answer by Lee B for Do any OR Mappers provide Asynchronous Methods? Lee B 2009-03-03T12:09:15Z 2009-03-03T12:09:15Z <p>Yes, for SQLAlchemy (one of the best ORMs), there is sAsync:</p> <p><a href="http://foss.eepatents.com/sAsync" rel="nofollow">http://foss.eepatents.com/sAsync</a></p> <p>and NADBAPI:</p> <p><a href="http://developer.berlios.de/projects/nadbapi/" rel="nofollow">http://developer.berlios.de/projects/nadbapi/</a></p> http://stackoverflow.com/questions/501845/do-any-or-mappers-provide-asynchronous-methods/610230#610230 1 Answer by Frans Bouma for Do any OR Mappers provide Asynchronous Methods? Frans Bouma 2009-03-04T11:52:07Z 2009-03-04T11:52:07Z <p>Fetching data in an asynchronous way can be accomplished in various ways. To outsource it to an o/r mapper gives challenges which you probably don't want to deal with as it doesn't really make your code less complex. The main problem is that you have to have a mechanism which is notified when the fetch is completed by the o/r mapper, so the caller is notified that data is ready. </p> <p>This isn't less complex than creating a thread yourself and call the o/r mapper's fetch logic from that thread. </p> <p>As you state that you want to create a webservice which should be responsive, you've to realize that the caller is outside the webservice and waits for data. I.o.w.: if the caller uses the webservice for fetching data, it's already asynchronous, as other clients will still be able to call the webservice as well: the original caller's request is handled on a different thread, logic to fetch the data is ran inside that thread, and the data is then returned to the caller. </p> <p>Using asynchronous methods is of no use here, as the caller would otherwise have to be notified when the data is ready, which requires a push from the webservice to the client, which requires the client to stay connected to the webservice as long as the fetch takes anyway. </p> <p>Asynchronous db interaction isn't magic things you can throw at something so it gets more responsive. Asynchronous db interaction could make the caller do other things in the mean time. However if that's already not necessary, you don't need asynchronous db interaction to begin with, which will make your code a lot less complex. </p> http://stackoverflow.com/questions/501845/do-any-or-mappers-provide-asynchronous-methods/610252#610252 2 Answer by Jeffrey for Do any OR Mappers provide Asynchronous Methods? Jeffrey 2009-03-04T11:57:58Z 2009-03-04T11:57:58Z <p>I think you got it wrong. My understanding is that asynchronous execution in your case should be handled at architecture level instead of ORM level i.e. message queue driven architecture. What I see is that your webserive will only place a message in the queue and there is some kind of background agent does the asynchronous processing off the queue.</p> <p>Since I don't have enough reputation to comment and Stackoverflow is alerting me inserting another "answer" I will leave my comment here. </p> <p>Lee B: SQLAlchemy? How do you use it with .NET???</p> http://stackoverflow.com/questions/501845/do-any-or-mappers-provide-asynchronous-methods/616683#616683 0 Answer by Flinkman for Do any OR Mappers provide Asynchronous Methods? Flinkman 2009-03-05T21:23:56Z 2009-03-05T21:23:56Z <p>It sounds like you are missing some indexes. </p> <p>Or you need to shift database design to OLAP model.</p> <p>If that is not the case. </p> <ol> <li>Get more ram.</li> <li>Get more CPU.</li> <li>Partition your tables.</li> <li>Build a wrapper infront of the DB that can handle async requests. It will look like a queue.</li> </ol> http://stackoverflow.com/questions/501845/do-any-or-mappers-provide-asynchronous-methods/617015#617015 0 Answer by Bearddo for Do any OR Mappers provide Asynchronous Methods? Bearddo 2009-03-05T22:43:47Z 2009-03-05T22:43:47Z <p>While I'm not sure if any of them do it out of the box, you could use <a href="http://nettiers.com/" rel="nofollow">.NetTiers</a>, which is template based. You could just add the async parts to the template. That would at least eliminate you having to maintain the boilerplate code and bare SQL queries. This <a href="http://williablog.net/williablog/post/2008/12/01/Add-Asynchronous-Data-Methods-to-the-Enterprise-Library.aspx" rel="nofollow">blog</a> shows how to add async calls to the MS Enterprise library (which .NetTiers can use if you choose).</p> <p>As of mid-December 2008, LLBLGen Pro does not natively support async calls. Currently <a href="http://www.genom-e.com/" rel="nofollow">Genome</a> doesn't either. It doesn't appear that <a href="http://www.telerik.com/products/orm.aspx" rel="nofollow">Telerik</a> does either. Pretty much just searched their documentation and looked for either async or methods that start with begin because that's the pattern. </p> <p>I let the other answers speak as to if it's a good idea or not...</p> http://stackoverflow.com/questions/501845/do-any-or-mappers-provide-asynchronous-methods/1521276#1521276 0 Answer by Unknown for Do any OR Mappers provide Asynchronous Methods? Unknown 2009-10-05T17:12:54Z 2009-10-05T17:12:54Z <p><a href="http://www.invist.net" rel="nofollow">Invist</a> supports async methods for loading and storing data async. It is a .NET O/R Mapper.</p>