ningshuxia
2024-05-22 e15d326bf99045464912aad08d18faa0c667cdb5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using SqlSugar;
//using SqlSugar.ClickHouse;
 
namespace IStation.Client
{
    internal static class Program
    {
        [STAThread]
        static void Main()
        {
            ////³ÌÐòÆô¶¯Ê±¼ÓÈë
            //InstanceFactory.CustomAssemblies =
            //      new System.Reflection.Assembly[] { typeof(ClickHouseProvider).Assembly };
 
            DAL.DbInitial.InitTables();
            SnowflakeIdHelper.SetIdGenerator(1);
 
            ApplicationConfiguration.Initialize();
            Application.Run(new Form2());
        }
    }
}