LinqToSql - mapping exception when using abstract base classes - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T06:40:15Z http://stackoverflow.com/feeds/question/1021274 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1021274/linqtosql-mapping-exception-when-using-abstract-base-classes 9 LinqToSql - mapping exception when using abstract base classes Jarrod Dixon 2009-06-20T09:03:30Z 2009-07-23T02:50:23Z <p>Problem: I would like to share code between multiple assemblies. This shared code will need to work with LinqToSql-mapped classes.</p> <p>I've encountered the same issue found <a href="http://stackoverflow.com/questions/156113/linqtosql-and-abstract-base-classes">here</a>, but I've also found a work-around that I find troubling (I'm not going so far as to say "bug").</p> <p><b>All the following code can be downloaded in <a href="http://www.filehosting.org/file/details/40226/TestLinq2Sql.zip" rel="nofollow">this solution</a>.</b></p> <p>Given this table:</p> <pre><code>create table Users ( Id int identity(1,1) not null constraint PK_Users primary key , Name nvarchar(40) not null , Email nvarchar(100) not null ) </code></pre> <p>and this DBML mapping:</p> <pre><code>&lt;Table Name="dbo.Users" Member="Users"&gt; &lt;Type Name="User"&gt; &lt;Column Name="Id" Modifier="Override" Type="System.Int32" DbType="Int NOT NULL IDENTITY" IsPrimaryKey="true" IsDbGenerated="true" CanBeNull="false" /&gt; &lt;Column Name="Name" Modifier="Override" Type="System.String" DbType="NVarChar(40) NOT NULL" CanBeNull="false" /&gt; &lt;Column Name="Email" Modifier="Override" Type="System.String" DbType="NVarChar(100) NOT NULL" CanBeNull="false" /&gt; &lt;/Type&gt; &lt;/Table&gt; </code></pre> <p>I've created the following base classes in one assembly "Shared":</p> <pre><code>namespace TestLinq2Sql.Shared { public abstract class UserBase { public abstract int Id { get; set; } public abstract string Name { get; set; } public abstract string Email { get; set; } } public abstract class UserBase&lt;TUser&gt; : UserBase where TUser : UserBase { public static TUser FindByName_Broken(DataContext db, string name) { return db.GetTable&lt;TUser&gt;().FirstOrDefault(u =&gt; u.Name == name); } public static TUser FindByName_Works(DataContext db, string name) { return db.GetTable&lt;TUser&gt;().FirstOrDefault(u =&gt; u.Name == name &amp;&amp; 1 == 1); } public static TUser FindByNameEmail_Works(DataContext db, string name, string email) { return db.GetTable&lt;TUser&gt;().FirstOrDefault(u =&gt; u.Name == name || u.Email == email); } } } </code></pre> <p>These classes are referenced in another assembly "Main", like so:</p> <pre><code>namespace TestLinq2Sql { partial class User : TestLinq2Sql.Shared.UserBase&lt;User&gt; { } } </code></pre> <p>The DBML file is located in the "Main" assembly, as well.</p> <p>When calling <code>User.FindByName_Broken(db, "test")</code>, an exception is thrown:</p> <blockquote> <p>System.InvalidOperationException: Class member UserBase.Name is unmapped.</p> </blockquote> <p>However, the other two base static methods work. </p> <p>Furthermore, the SQL generated by calling <code>User.FindByName_Works(db, "test")</code> is what we were hoping for in the broken call:</p> <pre><code>SELECT TOP (1) [t0].[Id], [t0].[Name], [t0].[Email] FROM [dbo].[Users] AS [t0] WHERE [t0].[Name] = @p0 -- @p0: Input NVarChar (Size = 4; Prec = 0; Scale = 0) [test] </code></pre> <p>While I am willing to use this <code>1 == 1</code> "hack" for single predicate queries, I'm interested to know if anyone else has a better way of sharing LinqToSql-aware code in a base/shared/core assembly.</p> http://stackoverflow.com/questions/1021274/linqtosql-mapping-exception-when-using-abstract-base-classes/1037677#1037677 1 Answer by Rob Ellis for LinqToSql - mapping exception when using abstract base classes Rob Ellis 2009-06-24T10:59:24Z 2009-06-24T10:59:24Z <p>You're asking several questions here Jarrod, can you be more specific? I.e. do you just want to know why your method fails? Or maybe you want a way of using data objects across different projects? I'm assuming you're not trying to use LinqToSQL as a database mapping layer and that you are using it as a domain model? In which case, do both applications implement the same domain (business processes, validation, etc)?</p> <p>Rob</p> http://stackoverflow.com/questions/1021274/linqtosql-mapping-exception-when-using-abstract-base-classes/1056662#1056662 2 Answer by Corbin March for LinqToSql - mapping exception when using abstract base classes Corbin March 2009-06-29T05:14:15Z 2009-07-05T23:38:31Z <p>I've had luck defining data classes in a shared assembly and consuming them in many assemblies versus mapping many assemblies' data classes to a shared contract. Using your example namespaces, put a custom DataContext and your shared data classes in TestLinq2Sql.Shared:</p> <pre><code>namespace TestLinq2Sql.Shared { public class SharedContext : DataContext { public Table&lt;User&gt; Users; public SharedContext (string connectionString) : base(connectionString) { } } [Table(Name = "Users")] public class User { [Column(DbType = "Int NOT NULL IDENTITY", IsPrimaryKey=true, CanBeNull = false)] public int Id { get; set; } [Column(DbType = "nvarchar(40)", CanBeNull = false)] public string Name { get; set; } [Column(DbType = "nvarchar(100)", CanBeNull = false)] public string Email { get; set; } } } </code></pre> <p>Then consume the DataContext from any other assembly:</p> <pre><code>using (TestLinq2Sql.Shared.SharedContext shared = new TestLinq2Sql.Shared.SharedContext( ConfigurationManager.ConnectionStrings["myConnString"].ConnectionString)) { var user = shared.Users.FirstOrDefault(u =&gt; u.Name == "test"); } </code></pre> http://stackoverflow.com/questions/1021274/linqtosql-mapping-exception-when-using-abstract-base-classes/1068499#1068499 4 Answer by O. Askari for LinqToSql - mapping exception when using abstract base classes O. Askari 2009-07-01T10:58:19Z 2009-07-01T10:58:19Z <p>Hi,</p> <p>I have encountered this problem many times in the past because we have a similar architecture in a framework that we use in our company. You may have noticed that if you use the declarative style LINQ queries you'll not encounter this problem. For example the following code will work:</p> <pre><code>return (from i in db.GetTable&lt;TUser&gt;() where i.Name = "Something").FirstOrDefault(); </code></pre> <p>However, since we are using dynamic filter expressions we couldn't use this method. The alternative solution is to use something like this:</p> <pre><code>return db.GetTable&lt;TUser&gt;().Select(i =&gt; i).Where(i =&gt; i.Name == "Something").SingleOrDefault(); </code></pre> <p>This solution solved our problem since we can inject a ".Select(i => i)" to the beginning of almost all expressions. This will cause the Linq engine not to look at the base class for the mappings and will force it to look at the actual entity class and find the mappings.</p> <p>Hope it helps</p> http://stackoverflow.com/questions/1021274/linqtosql-mapping-exception-when-using-abstract-base-classes/1169342#1169342 2 Answer by DamienG for LinqToSql - mapping exception when using abstract base classes DamienG 2009-07-23T02:50:23Z 2009-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>