mh_frame_sps/APT.Infrastructure.EF/Constans.cs
2026-04-07 13:47:52 +08:00

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
};
}
}