Another approach might be
I've had luck defining data classes in a shared assembly and consuming them in many assemblies versus mapping many assemblies' data classes to define a shared contract. Using your example namespaces, put a custom DataContext and Entities in your shared assembly. Something like thisdata classes in TestLinq2Sql.Shared:
namespace TestLinq2Sql.Shared
{
public class SharedContext : DataContext
{
public Table<User> 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; }
}
}
Then consume the DataContext from another any other assembly:
using (TestLinq2Sql.Shared.SharedContext shared =
new TestLinq2Sql.Shared.SharedContext(
ConfigurationManager.ConnectionStrings["myConnString"].ConnectionString))
{
var user = shared.Users.FirstOrDefault(u => u.Name == "test");
}
In the scenario you describe, you can also "hack" single predicate queries by casting as the generic type in the lambda:
return db.GetTable<TUser>().FirstOrDefault(u => ((TUser)u).Name == name);
I have no idea why it works, but it does...
