Tagged Questions
6
votes
1answer
2k views
Linq to Entities, Table per Type and Nullable Foreign Key Relationships
I'm using Linq to entities applying a Table per Type approach. This has been going very well, up to now. I have the following setup:
Parent Table
Child Table (Inherits
from parent)
Grand Child Table
...
3
votes
1answer
440 views
Entity Framework 4.1 - TPT Eager Loading - “The ResultType of the specified expression is not compatible with the required type”
I have a model with TPT inheritance.
Location (abstract)
Street (derived from Location)
GoogleStreetView (1 Street -> 0..1 GoogleStreetView)
Each of the above has it's own table.
All was working ...
3
votes
5answers
8k views
Unable to save Entity Framework Inherited types
I have implemented some table-per-type inheritance in my data model (basically have a "BaseEntity" type with all the base information for my items and a "Employer" type that inherits from the ...
2
votes
1answer
237 views
Entity Framework 4.1 updates to TPT and TPCT models?
I last tried out the Entity Framework when it was at version 4.0. My experiments with it, confirmed by some posts on the MSDN forums and elsewhere, indicated that the TPT (table-per-type) and TPCT ...
2
votes
2answers
817 views
Entity Framework Table Per Type Performance
So it turns out that I am the last person to discover the fundamental floor that exists in Microsoft's Entity Framework when implementing TPT (Table Per Type) inheritance.
Having built a prototype ...
2
votes
0answers
169 views
Cast to a property reference to a subclass in Entity framework (TPT)
I've got the following scheme: (not really the code, just to get the idea)
class Person;
class Employee : Person;
class Company
{
public Person ContactPerson { ...}
public ...
1
vote
3answers
82 views
Entity Framework, Table Per Type and Linq - Getting the “Type”
I have an Abstract type called Product, and five "Types" that inherit from Product in a table per type hierarchy fashion as below:
I want to get all of the information for all of the Products, ...
1
vote
1answer
72 views
How do I query just one level of a table-per-type mapping?
I'm using Entity Framework 4.1's code first approach to map a class hierarchy to a series of tables.
I have the following classes defined:
[Table("FooBases")]
public class FooBase
{
public int ...
1
vote
1answer
178 views
EF1: Filtering derived types of entity class using .OfType<> by passing a string value
I have a situation where I'm trying to filter a LINQ select using a derived sub class.
ctx.BaseEntity.OfType<SubClass>() - this works fine.
However I'd like to do this using a string value ...
0
votes
0answers
81 views
EF Code First: separate creation of objects in db with TFT inheritance
I have a simple 2 object Table-Per-Type inheritance defined in an EF model.
Entities
public class User
{
public Guid Id { get; set; }
public string Name { get; set; }
public string ...
0
votes
1answer
147 views
Table-per-type inheritance with EF 4.1 Fluent Code First
I have the following tables
Item
-------------------
ItemId (PK)
Name
Properties
-------------------
PropertyId (PK)
Name
ItemProperties
-------------------
ItemId (FK) (CPK)
PropertyId (FK) (CPK)
...
0
votes
1answer
342 views
Entity Framework 4.1, Table Per Type Inheritance and Lookup Tables
Using table per type inheritance is it possible to have the same data with the same key in more than one of the derived types?
e.g.
Base Type :
[Table("BaseType")]
public abstract class BaseType
{
...
0
votes
1answer
268 views
EF: Can I mix TPH and TPT when abstract base and a few concrete types are in TPH-table and other types have their own table?
First of all, these questions are similar but definitely not the same:
Can I mix Table per Hierarchy and Table per Type in Entity Framework? - Refers to a different scenario.
Entity Framework: mix ...
0
votes
3answers
369 views
Entity Framework 4.1 Table-Per-Type Mapping (SOLVED)
I am trying to write a project using the code-first approach and I have run into the following problem
public class BaseType
{
[Key]
public int id { get; set; }
public string ...
0
votes
1answer
98 views
How can I associate a new entity with an existing entity in EF4?
I've got a Patient entity (storing up-to-date information about a patient) and a TreatmentPlanPatient entity (a copy of a patient's date as it was when the "treatment plan", another entity not ...
0
votes
2answers
315 views
EF Table Per Type with Navigation property on Sub Type Table
I'm hoping someone out in the SO community will be able to help me out here.
Simplified Background:
I'm using Entity Framework V1 to build my class structure that is outlined below, I'm using Table ...
0
votes
1answer
720 views
Error when trying to filter on a property of an entity inheriting from another in Entity Framework
When I have entity B inherit from entity A using table-per-type for storage and try to write a Linq query that filters on a property on B, for example
Function(b) b.name="Joe"
I get the error
...
0
votes
1answer
2k views
Inheritance problems with Entity Framework (table per type)
For part of the project I'm currently working on, I have a set of four tables for syndicatable actions. One table is the abstract base for the other three, and each table is represented in my EF model ...