예제 #1
0
파일: Program.cs 프로젝트: 6bee/Remote.Linq
        private static void Main()
        {
            Title("MessagePack Serialization over TCP/IP [Server]");
            using var serviceHost = new TcpServer(8899);
            serviceHost.RunAsyncQueryService(new QueryService().ExecuteQueryAsync);

            PrintServerReady();
            WaitForEnterKey();
        }
예제 #2
0
파일: Program.cs 프로젝트: 6bee/Remote.Linq
        private static void Main()
        {
            Title("Entity Framework Core [Server]");
            using var serviceHost = new TcpServer(8899);
            serviceHost.RunAsyncQueryService(new QueryService().ExecuteQueryAsync);

            PrintServerReady();
            WaitForEnterKey();
        }