active questions tagged subsonic - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T15:19:41Z http://stackoverflow.com/feeds/tag/subsonic http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1868616/setting-up-subsonic-with-databases-other-than-sql-server 0 Setting up SubSonic with Databases other than SQL Server Sam 2009-12-08T17:41:06Z 2009-12-09T11:15:17Z <p>I am currently using SubSonic (2.2 and 3) for some ASP.NET projects and have managed to get them working with SQL Server (using ActiveRecord). However, I also want to know how to set it up with other (open source) databases, e.g. PostgreSQL and SQLite. This is so I can use it on a web host without SQL Server on. The providers I have found are:</p> <ul> <li>PostgreSQL: <a href="http://npgsql.projects.postgresql.org/" rel="nofollow">Npgsql</a></li> <li>SQLite: <a href="http://sqlite.phxsoftware.com/" rel="nofollow">System.Data.SQLite</a> or <a href="http://www.mono-project.com/SQLite" rel="nofollow">Mono.Data.SqliteClient</a> (if it works with Microsoft.NET)</li> </ul> <p>Anyone have any experience with SubSonic know how to do this (some sample demo would be good - just a basic primer on querying would be fine)? Non-ASP.NET MVC though (not got into it yet). I have only basic knowledge of SQLite (basically using SQLite Manager in Firefox and querying it via PHP Data Objects) and have not used Postgresql, but assume it would be more scalable than SQLite.</p> http://stackoverflow.com/questions/1645954/ria-base-domainservice-implementation-for-subsonic-3 1 RIA base DomainService implementation for Subsonic 3? Alex 2009-10-29T19:20:16Z 2009-12-09T04:33:37Z <p>So i'm fairly new to both SubSonic and RIA Services. I've done the RIA walkthrough for the HR app and it all looks good, but I'm not quite about creating a DomainService base class for Subsonic. </p> <p>The samples <a href="http://code.msdn.microsoft.com/Project/Download/FileDownload.aspx?ProjectName=RiaServices&amp;DownloadId=5731" rel="nofollow">here</a> describe creating a custom base class for your DAL but I wondering if there was already anything out in the wild that did this for Subsonic 3 SimpleRepository?</p> <p>Additionally how should one handle generating all the DomainService classes that correspond to each class in the DAL? T4 templates?</p> http://stackoverflow.com/questions/1869896/subsonic-3-0-0-3-times-out-on-multiple-save-operations-mssql2005 0 subsonic 3.0.0.3 times out on multiple save operations. MSSQL2005 Sylvain Cyr 2009-12-08T21:15:08Z 2009-12-08T22:47:03Z <p>Hi to everyone,</p> <p>I'm reading a csv file and insert the information in a sql 2005 database.</p> <p>After about 250 object.save operations, it times out. here the code and the exact error message. this is not the first version of the code but it always give the same time out.</p> <p>This is not a big database, only 2 tables. Is there something I'm not doing ? Does it open and close a connection for every save operation. All input on that problem is welcome.</p> <pre><code>List&lt;shipment&gt; oLstShipments = new List&lt;shipment&gt;(); while (oReader.ReadNextRecord()) { int iIdShipment; if (int.TryParse(oReader[0], out iIdShipment)) { shipment oShipment = new shipment(); oShipment.idShipment = iIdShipment; oShipment.dateDelivered = oReader[1]; oShipment.inventoryGroup = oReader[2]; oShipment.companyId = oReader[3]; oShipment.shipTo = oReader[4]; oShipment.carrier = oReader[5]; oShipment.accountOwner = oReader[6]; oShipment.accountNumber = oReader[7]; oShipment.trackingNumber = oReader[8]; oLstShipments.Add(oShipment); } } oReader.Dispose(); oSR.Dispose(); foreach (shipment oShip in oLstShipments) { oShip.Save(); } </code></pre> <p>the error :</p> <pre><code>System.InvalidOperationException: Timeout expired. The timeout period elapsed prior to obtaining a connection from the pool. This may have occurred because all pooled connections were in use and max pool size was reached. at System.Data.ProviderBase.DbConnectionFactory.GetConnection(DbConnection owningConnection) at System.Data.ProviderBase.DbConnectionClosed.OpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory) at System.Data.SqlClient.SqlConnection.Open() at SubSonic.DataProviders.DbDataProvider.CreateConnection(String connectionString) at SubSonic.DataProviders.DbDataProvider.CreateConnection() at SubSonic.DataProviders.AutomaticConnectionScope..ctor(IDataProvider provider) at SubSonic.DataProviders.DbDataProvider.ExecuteReader(QueryCommand qry) at SubSonic.Repository.SubSonicRepository`1.Add(T item, IDataProvider provider) at invoiceRetriever.Data.shipment.Add(IDataProvider provider) in D:\programmation\ceb\invoiceRetriever\invoiceRetriever\ActiveRecord.cs:line 516 at invoiceRetriever.Data.shipment.Save(IDataProvider provider) in D:\programmation\ceb\invoiceRetriever\invoiceRetriever\ActiveRecord.cs:line 531 at invoiceRetriever.Data.shipment.Save() in D:\programmation\ceb\invoiceRetriever\invoiceRetriever\ActiveRecord.cs:line 525 at invoiceRetriever.frmHaasFiles.cmdProcess_Click(Object sender, EventArgs e) in D:\programmation\ceb\invoiceRetriever\invoiceRetriever\frmFiles.cs:line 59 </code></pre> http://stackoverflow.com/questions/812081/which-net-object-relational-mapper-is-fastest 1 Which .NET Object Relational Mapper is fastest? Jalpesh P. Vadgama 2009-05-01T16:24:06Z 2009-12-08T22:23:44Z <p>I want to use an Object Relational Mapper (ORM) tool for my ASP.NET application. I have three options: <a href="http://nhibernate.org" rel="nofollow">NHibernate</a>, <a href="http://msdn.microsoft.com/en-us/library/bb425822.aspx" rel="nofollow">LINQ to SQL</a>, and <a href="http://subsonicproject.com/" rel="nofollow">Subsonic</a>. Which one is fastest?</p> http://stackoverflow.com/questions/929382/saving-parent-and-childs 1 saving Parent and childs Spiderman 2009-05-30T08:50:39Z 2009-12-08T16:26:38Z <p>I have couple tables in my schema with PK and FK relationship. I have created the DAL using SubSonic generator. </p> <p>If I create new parent and its childs, how should I save both? separately or in one shot?</p> <blockquote> <p>e.g.</p> </blockquote> <pre><code>Parent.Save(); ChildCollection.SaveAll(); </code></pre> <p>I tried above, but it does not work because ChildCollection does not have its parent's Id. Is it that I have to assign parent Ids for each child my self or is there an option to save it all in one shot?</p> <p>please advise...</p> http://stackoverflow.com/questions/1867916/how-to-give-strongly-name-to-subsonic-core-dll 0 how to give strongly name to subsonic.core.dll Bartosdz 2009-12-08T16:01:41Z 2009-12-08T16:06:24Z <p>Hi, Can you help me? I need to have subsonic.core.dll strongly named. How can I do this?</p> <p>Best Regards</p> http://stackoverflow.com/questions/1866414/using-where-with-subsonic-collection 0 Using Where With SubSonic Collection riteshtandon23 2009-12-08T11:38:32Z 2009-12-08T15:35:56Z <p>Hi All,</p> <p>I am having problem with collection object. Here is the code</p> <p>CarCollection obj=new CarCollection(); obj.Where("Id","10"); obj.Load();</p> <p>The problem is the result of the records doubles i.e actually there is only 1 record with the id 10 but it returns 2 same records. Please Help me as i am a newbie.</p> <p>Thanks </p> http://stackoverflow.com/questions/1867224/customizing-subsonic-2-2-scaffolding 0 Customizing SubSonic 2.2 Scaffolding Kuytu 2009-12-08T14:13:44Z 2009-12-08T14:13:44Z <p>I'm using SubSonic 2.2. I am able to customize my class generation with templates like described <a href="http://stackoverflow.com/questions/1217845/how-to-modify-subsonic-2-1-code-generation">here for example</a>. </p> <p>However I would like to customize the Scaffold control also, but I have trouble figuring out how it is done. Editing the scaffold templates in the template directory seems to have no effect. </p> <p>If anyone has done this, any tips would be appreciated.</p> http://stackoverflow.com/questions/861319/how-to-using-select-with-multi-table-in-subsonic-query 0 How to using select with multi table in SubSonic query ? Shinichi 2009-05-14T02:45:26Z 2009-12-08T10:58:54Z <p>Hi,</p> <p>I am new with SubSonic and have a problem with query. This is my query string </p> <pre><code>string sql = "SELECT *" + " FROM tbl_exrates, tbl_currency" + " WHERE date = " + d; " AND tbl_exrates.currency = tbl_currency.cid" + " AND (cash &gt; 0 OR transfer &gt; 0 OR sell &gt; 0)"; </code></pre> <p>How to convert it to SubSonic Query string ? Does SS have function support to do that ?</p> <p>Thanks !</p> http://stackoverflow.com/questions/1837752/change-oracle-schema-at-runtime-when-using-subsonic 0 Change Oracle Schema at runtime when using SubSonic ThanhHH 2009-12-03T04:59:12Z 2009-12-07T23:22:04Z <p>In my project, I am using Oracle Database and SubSonic for DAL. I have a problem with SubSonic and Oracle Schema, that is:</p> <p>When developing, I used a schema DEV in Oracle Database and generate DAL using SubSonic. After that when release to customer, he used a new schema TEST in Oracle Database and changed the connection string in app.config to connect to Oracle. The error will appear, that is “Table or View does not exist”. I found this error and see that the schema of tables is still DEV. I do not want re-generate DAL after change schema and when released to the customer. Please help me.</p> http://stackoverflow.com/questions/1841278/question-about-northwind-db-example 0 Question about Northwind DB example Mark 2009-12-03T16:53:41Z 2009-12-07T23:17:53Z <p>When messing with the Subsonic 3.0 Northwind stuff:</p> <pre><code>var product = Product.SingleOrDefault(x =&gt; x.ProductID == 1); </code></pre> <p>I found the following was possible, but not workable) using intellisense:</p> <pre><code>var product = Product.SingleOrDefault(x =&gt; x.OrderDetails == 1); </code></pre> <p>OrderDetails as a member of Product, is an IQueryable. I guess I'm new to LINQ, but I was wondering how to use this member? Everytime I try to get info out of this I get an error. Could someone give me an example of how to use the OrderDetails member of Product? And perhaps throw the results in a databind to a Gridview?</p> <p>Look at the following code and tell me what I'm doing wrong:</p> <pre><code> var products = from od in OrderDetail.All() join p in Product.All() on od.ProductID equals p.ProductID select od; </code></pre> <p>I get the following error:</p> <pre><code>Object of type 'System.Single' cannot be converted to type 'System.Decimal'. </code></pre> http://stackoverflow.com/questions/1012935/update-to-2-2-and-update-commands-dont-work 1 Update to 2.2 and update commands don't work joaxazevedo 2009-06-18T14:23:34Z 2009-12-07T03:00:03Z <p>Hello! I updated my ASP.NET/C# project to version 2.2 of Subsonic, before it was 2.0.3. After this update all Update commands don't work! There is no exception, nothing, but the database is not updated!</p> <p>Someone know how to resolve that? I need to modify something in project or to resolve I have to modify all update commands?</p> <p>Example, this work before update version of Subsonic: </p> <pre><code>TblCliente.Update(codCliente, txtNomeCliente, Int32.Parse(txtPrograma.Text), txtLinha.Text, txtPrefixo.Text ); </code></pre> http://stackoverflow.com/questions/1839972/subsonic3-storedprocedures-tt-sqlserver-ttinclude 0 SubSonic3 StoredProcedures.tt & SQLServer.ttinclude Lieven Cardoen 2009-12-03T13:51:50Z 2009-12-06T21:47:33Z <p>In the template to get the stored procedures I see this line</p> <pre><code>if(spType=="PROCEDURE" &amp;! sp.Name.StartsWith("sp_")){... </code></pre> <p>Why can't the sp's start with sp_?</p> http://stackoverflow.com/questions/1844082/subsonic-3-query-like-clause 0 Subsonic 3 query like clause Jonathon 2009-12-04T00:28:38Z 2009-12-06T14:02:12Z <p>This may be another of those "should be simple" things, but I can't find anything on it so here I am asking what will most likely be a stupid question :$</p> <p>I'm using SubSonic 3 and I want to execute a query with a like clause but can't find that as an option. My straight SQL is like so:</p> <p>select * from table where column like %value% or column like %anothervalue%</p> <p>Thanks for any help.</p> <p>Jon</p> http://stackoverflow.com/questions/1181776/subsonic-select-sum-3-columns 0 SubSonic Select Sum 3 Columns PeterRock 2009-07-25T09:56:08Z 2009-12-06T08:59:59Z <p>Hi,</p> <p>i need following SQL Expression for SubSonic I have to SUM 3 Columns and return the value in my result.</p> <p>SubSonic.SqlQuery qs =new SubSonic.Select() .From(Table.ViewAllratingsGlo.Schema.TableName);</p> <p>SubSonic.Aggregate ag = SubSonic.Aggregate.Sum(("Column1+Column2+Column3), "Score"); qs.Aggregates.Add(ag);</p> <p>string SqlResult = qs.BuildSqlStatement();</p> <p>In the Sql Statement i just see the Aggregate Query like Select SUM("Column1+Column2+Column3) As 'Score'</p> <p>But i need the other fields from my table too.</p> <p>Can anybody explain me how i can realize it</p> http://stackoverflow.com/questions/1844547/dynamic-data-with-subsonic-3 0 Dynamic Data with Subsonic 3 Ezequiel Bertti 2009-12-04T02:49:47Z 2009-12-05T20:36:40Z <p>i want to make a webproject with subsonic and dynamic data...</p> <p>But when i go register the ContextData a don't have it in subsonic with LINQ...</p> <p>how can i make it work?</p> http://stackoverflow.com/questions/1843235/subsonic-with-vistadb 0 Subsonic with VistaDB? Vikas 2009-12-03T21:58:43Z 2009-12-04T08:34:47Z <p>Is it possible to use Subsonic with VistaDB? I see it as a supported database for Subsonic 3 on the project website, But can't find a T4 template for it?</p> <p>Will I need to use SR or I can use AR?</p> <p>Vikas</p> http://stackoverflow.com/questions/1316437/is-subsonic-3-compatible-with-the-latest-release-of-mono 2 is Subsonic 3 compatible with the latest release of Mono? Allan N 2009-08-22T16:49:56Z 2009-12-04T04:00:03Z <p>The latest stable release of Mono right now is 2.4.2.3. Does subsonic 3 work with it? I know Mono isn't compatible with all .net 3.5 features yet, but I'm presuming compatibility depends on which specific language features of .net 3.5 Subsonic uses. Does anyone know for a fact whether it's compatible?</p> http://stackoverflow.com/questions/1594515/whats-the-right-way-to-load-child-collections-inside-a-poco-with-a-subsonic-repo 3 What's the right way to Load child collections inside a POCO with a SubSonic Repository? Pete Michaud 2009-10-20T13:12:04Z 2009-12-04T01:35:29Z <p>I've read the questions asking about the right way to inject data access into POCOs, and the consensus seems to be "don't". Fine, what is the right way then? If I have an Order object, and I want a list of the OrderLines, I don't want to explicitly assign that list to the POCO externally, that's horribly ugly. So if I can't use DI to give the POCO a little intelligence, do I need to create a dummy object that can grab the extra information? </p> http://stackoverflow.com/questions/1835101/subsonic-3-transaction 0 Subsonic 3 transaction Lewis 2009-12-02T19:05:03Z 2009-12-03T15:01:45Z <p>Hi, I have DTC configured as outlined on MS website to support for remote transaction. I have the following code always giving me error. </p> <pre><code>using (TransactionScope ts = new TransactionScope()) { Category c = new Category(); c.Name = "Cat1"; c.Save(); Product p = Product.SingleOrDefault(x=&gt;x.ProductID==1); p.Title = "new title"; p.Save(); ts.Close(); } </code></pre> <p>However if I move the second block of code out of the suing block it works just fine. What I want to do is bind those two block of code into one trascation. What could be the readon? Thanks,</p> http://stackoverflow.com/questions/1832595/problem-with-delete-when-multiple-columns 0 problem with delete when multiple columns minus4 2009-12-02T12:23:22Z 2009-12-02T21:01:23Z <p>hiya</p> <p>when deleteing this works:</p> <pre><code>orderitems.Delete(x =&gt; x.orderitem_sessionid == transkey); </code></pre> <p>however this does not work</p> <pre><code>orderitem.Delete(x =&gt; x.orderitem_sessionid == transkey &amp;&amp; x.orderitem_productid == 6); </code></pre> <p>i get no errors, but nothing is deleted either, i have working code as a substitute of</p> <pre><code>var DeleteableItems = orderitems.All().where(x =&gt; x.orderitem_sessionid == transkey &amp;&amp; x.orderitem_productid = 6); foreach(var item in DeleteableItems) item.delete; </code></pre> <p>though the above works it still bugs me that this wont work with just nomal delete method, using subsonic 3.0.0.3 and mysql database</p> <p>thanks</p> http://stackoverflow.com/questions/1321514/problem-about-activerecord-templates-for-sqlite 0 Problem about ActiveRecord Templates for SQLite Liu Peng 2009-08-24T10:09:47Z 2009-12-02T08:59:02Z <p>I try to using the SQLite in SubSonic.Examples.ActiveRecord project so:</p> <ol> <li>Add a reference for System.Data.SQLite</li> <li>Copy the SQLite.ttinclude and Settings.ttinclude from \T4 Templates\TemplateProviders\ to the Models_Generated\</li> <li>Change the &lt;#@ include file="SQLite.ttinclude" #> in the SQLite.ttinclude and Settings.ttinclude</li> <li>Change the settings: Namespace, ConnectionStringName, DatabaseName to "Blog" in the Settings.ttinclude file.</li> </ol> <p>I meet two errors when regenerate the code: first one is because of missing a "break" at SQLite.ttinclude line #80</p> <pre><code>case "long": case "integer": sysType= "long"; break; // missing a break case "guid": </code></pre> <p>After add a "break" the code file "Context.cs" can generate successfully, but the ActiveRecord.cs can not generate, there is a Warning:</p> <p><strong><em>Multiple template directives were found in the template. All but the first one will be ignored. Multiple parameters to the template directive should be specified within one template directive. D:\LP\Study\SubSonic 3 Final\Examples\SubSonic.Examples.ActiveRecord\Models_Generated\Settings.ttinclude 1 4</em></strong> </p> http://stackoverflow.com/questions/1764165/understanding-msdtc-in-windows 0 Understanding MSDTC in Windows. AJ 2009-11-19T15:38:58Z 2009-12-02T07:06:36Z <p>Hi</p> <p>To use transaction construct(as follows) in Subsonic, MSDTC needs to be running on Windows machine. Right?</p> <pre><code> using (TransactionScope ts = new TransactionScope()) { using (SharedDbConnectionScope sharedConnectionScope = new SharedDbConnectionScope()) { // update table 1 // update table 2 // ts.commit here } } </code></pre> <ol> <li>Is MS-DTC a default service on Windows systems(XP, Vista, Windows 7, Servers etc)?</li> <li>If it is not enabled, how can I make sure it gets enabled during the installation process of my application?</li> </ol> <p>Please advise.</p> <p>Thanks</p> <p>AJ</p> http://stackoverflow.com/questions/961602/subsonic-mysql-version 0 SubSonic MySQL Version ddoctor 2009-06-07T09:56:01Z 2009-12-02T04:00:03Z <p>SubSonic 2.2 requires MySQL Connector 5.3.2.0. This is not included in the download package, nor is it any longer available from the MySQL download site.</p> <p>I know I can build SubSonic again from source to get around this, but this is a pain.</p> <p>Can someone on the SubSonic project please change the "Specific Version" flag on the MySQL assembly reference to "false"?</p> http://stackoverflow.com/questions/1823537/sqlite-pragma-foreignkeys-question 0 SQLite PRAGMA foreign_keys question P a u l 2009-12-01T01:48:45Z 2009-12-01T20:37:33Z <p>I've modified System.Data.SQLite to use a recent version of <a href="http://en.wikipedia.org/wiki/SQLite" rel="nofollow">SQLite</a> engine that automatically enforces foreign keys without using custom triggers. </p> <p>I'm also using <a href="http://en.wikipedia.org/wiki/Subsonic%5F%28software%29" rel="nofollow">SubSonic</a> 2.x but this would apply to any <a href="http://en.wikipedia.org/wiki/Object-relational%5Fmapping" rel="nofollow">ORM</a> frameworks using SQLite that are 'open late close early'.</p> <p>How would you ensure that the statement 'PRAGMA foreign_keys=true' is called on every SQLiteConnection.Open()? It has to be called or foreign keys don't work.</p> http://stackoverflow.com/questions/1818915/subsonic-filter-by-xml-column-datatype 0 Subsonic - Filter by XML Column DataType Jon 2009-11-30T10:06:31Z 2009-12-01T18:36:28Z <p>I have downloaded Subsonic 3.0.0.3 and I have a XML DataType in my MSSQL database. The property comes back as a string which is fine however how do I create a line of code to filter by contents in that column.</p> <p>If I try something like <code>from x in Table.All() where x.XMLColumn.Contains("test")</code> it throws an exception because although the property is a string and the above will compile when it turns it into SQL its incorrect for that column type.</p> http://stackoverflow.com/questions/1827091/subsonic-3-repository-sqlite-in-memory 0 SubSonic 3 Repository - SQLite In-Memory Steve Foster 2009-12-01T15:54:36Z 2009-12-01T18:32:37Z <p>Before I invest the time in modifying the SubSonic 3 source, I figured I ask to see if I'm missing something simple.</p> <p>Is it possible to use the SubSonic 3 Repository with migrations on a SQLite In-Memory database? I couldn't find a way to force the DbDataProvider to keep the connection open so the In-Memory SQLite database doesn't vanish when the connection get's closed.</p> <p>The unit test with the connection string I was trying is...</p> <pre><code>public class SQLite_InMemory_SimpleRepositoryTests { public class Job { public Guid JobId { get; set; } public string JobName { get; set; } } [Fact] public void SQLite_InMemory_SimpleRepo_CanStayOpen() { IDataProvider provider = ProviderFactory.GetProvider("Data Source=:memory:;Version=3;New=True;Pooling=True;Max Pool Size=1;", "System.Data.SQLite"); IRepository repository = new SimpleRepository(provider, SimpleRepositoryOptions.RunMigrations); for (int i = 0; i &lt; 10000; i++) { var job = new Job {JobId = Guid.NewGuid(), JobName = "Job_"+i}; repository.Add(job); } } } </code></pre> <p>I tried setting the "Shared Connection" on the IDataProvider, but the connection still seemed to close.</p> <p>If not, I'll update the SubSonic source, and submit the changes.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1827630/how-do-i-setup-my-pocos-with-subsonic-3-and-the-simplerepostitory-or-where-is-t 0 How do I setup my POCO's with Subsonic 3 and the SimpleRepostitory? or where is the convention? rball 2009-12-01T17:18:40Z 2009-12-01T18:29:36Z <p>Is there someplace that details how to setup your POCO's when using the SimpleRepository with SubSonic 3? It sounds like it's convention over configuration, but I can't find where that convention is explained.</p> <p><a href="http://www.subsonicproject.com/docs/Conventions" rel="nofollow">http://www.subsonicproject.com/docs/Conventions</a> looks like it was meant for 2.0, and is also marked incomplete. (BTW: I'd love to help reorganize the docs into more a 2.0 and 3.0 as the current docs are a bit confusing on which version they are referring to.)</p> <p>For instance I'd like to know how I'd go about setting up a</p> <p>one-to-one relationship</p> <p>User &lt;=> Profile</p> <pre><code>class User { Id ProfileId instead of Profile? or is Profile profile possible? } class Profile { Id UserId instead of User? or is User user possible? } </code></pre> <p>One-to-many relationship</p> <pre><code>class User { Id IList&lt;Post&gt; Posts (?) or IList&lt;int&gt; PostIds (?) or is this implied somehow? or is this just wrong? } class Post { Id UserId instead of User? or is User user possible? } </code></pre> <p>Many-to-many</p> <p>I'm guessing I'd need to setup a many to many table?</p> <pre><code>class User { IList&lt;Blog&gt; Blogs (?) or IList&lt;int&gt; BlogIds (?) or is this implied somehow? } class BlogsUsers { // Do I have to create this class? UserId BlogId } class User { IList&lt;User&gt; Users (?) or IList&lt;int&gt; UserIds (?) or is this implied somehow? } </code></pre> <p>In the example solution it doesn't seem like these are set so I'm wondering how you'd go about doing a (my guess proceeds example):</p> <p>one-to-one</p> <pre><code>User.Profile r.Single&lt;Profile&gt;(p=&gt;p.User == userId); </code></pre> <p>parent on one-to-many</p> <pre><code>Post.User id = r.Single&lt;Post&gt;(postId).UserId; r.Single&lt;User&gt;(id); // which kind of stinks with two queries, JOIN? </code></pre> <p>children on one-to-many</p> <pre><code>User.Posts r.Find&lt;Post&gt;(p=&gt;p.UserId == userId) </code></pre> <p>or many-to-many</p> <pre><code>User.Blogs ids = r.Find&lt;BlogsUsers&gt;(bu=&gt;bu.UserId == userId); r.Find&lt;Blog&gt;(b=&gt;b.BlogId == ids); // again with the two queries? :) Blog.Users ids = r.Find&lt;BlogsUsers&gt;(bu=&gt;bu.BlogId == blogId); r.Find&lt;User&gt;(u=&gt;u.UserId == ids); // again with the two queries? :) </code></pre> <p>I would assume that there's got to be a way to not have the two queries and for these properties to already be autogenerated in some way. Truth be told though I did only have an hour to play with everything last night so I am a little afraid of Rob yelling at me. I'm SORRY! :P</p> <p>If these are not autogen'd then where are views and store procedures for 3.0? Please give me a link for those as well while you're at it fellow SO'er.</p> http://stackoverflow.com/questions/1262268/subsonic-support-for-oracle-odp-net 1 Subsonic support for Oracle ODP.NET? scott 2009-08-11T18:54:03Z 2009-12-01T15:20:01Z <p>I'm new to Subsonic and I work primarily with Oracle databases. Can subsonic be used against an Oracle database and does it support the use of Oracle's ODP.NET data provider.</p> <p>If yes, can you point me to a good example?</p> <p>Thanks in advance. Scott</p> http://stackoverflow.com/questions/1826518/is-stackoverflow-the-only-place-to-get-subsonic-support -1 Is Stackoverflow the only place to get Subsonic support? [closed] Jon 2009-12-01T14:27:14Z 2009-12-01T14:36:42Z <p>I have an issue still <a href="http://stackoverflow.com/questions/1818915/subsonic-filter-by-xml-column-datatype">unanswered</a> but I just thought I'd check how to get support on Subsonic. </p> <p>I know Rob has previously stated that Stackoverflow is the place to go but I am working on a tight deadline and at the moment I am rather stuck. </p> <p>I like Subsonic immensely but maybe I shouldn't use it on business type projects because if I get stuck I could be waiting a while!?</p>