You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
563 B
C#
27 lines
563 B
C#
using System;
|
|
|
|
namespace EntityFrameworkCore.Jet.IntegrationTests.Model10
|
|
{
|
|
public class SomeClass
|
|
{
|
|
public int SomeClassId { get; set; }
|
|
public string Name { get; set; }
|
|
public virtual Behavior Behavior { get; set; }
|
|
}
|
|
|
|
public abstract class Behavior
|
|
{
|
|
public int BehaviorId { get; set; }
|
|
}
|
|
|
|
public class BehaviorA : Behavior
|
|
{
|
|
public string BehaviorASpecific { get; set; }
|
|
}
|
|
|
|
public class BehaviorB : Behavior
|
|
{
|
|
public string BehaviorBSpecific { get; set; }
|
|
}
|
|
}
|