1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
namespace DaFunc
{
using System.Data.Entity;
/// <summary>
/// A normal type with an intentionally short name--see above.
/// </summary>
public class NT
{
}
/// <summary>
/// A generic type with an intentionally short name--see above.
/// </summary>
public class GT<T1, T2>
{
/// <summary>
/// A context type nested in a generic type.
/// </summary>
public class Funcy : DbContext
{
}
/// <summary>
/// A generic context type nested in a generic type.
/// </summary>
public class GenericFuncy<T3, T4> : DbContext
{
}
}
/// <summary>
/// A generic context type.
/// </summary>
public class GenericFuncy<T1, T2> : DbContext
{
}
}
|