16 lines
346 B
C#
16 lines
346 B
C#
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
|
||
|
|
namespace APT.Infrastructure.EF
|
||
|
|
{
|
||
|
|
public class Constants
|
||
|
|
{
|
||
|
|
internal static List<ConnectionResolverType> specialConnectionTypes = new List<ConnectionResolverType>
|
||
|
|
{
|
||
|
|
ConnectionResolverType.ByTable,
|
||
|
|
ConnectionResolverType.BySchema
|
||
|
|
};
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|