You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
n074v41l4bl34u edited this page Sep 7, 2014
·
1 revision
It's common to extract properties common to all (or most) of your entities into a base-class. Sometimes you may want your base-class to be an open generic type, with which each inheritor can change the generic argument for different behaviour.
An example of this is using a single generic argument to dictate the Id type.
public abstract class BaseEntity<T>
{
public T Id { get; private set; }
}
When using this kind of base-class, you just need to ignore it like any other base type.