(5)控制台程序获取菜单

上一篇:(4)仓库操作类方法的实现

  • 右击 CM.Services 新建类
    (5)控制台程序获取菜单_第1张图片
    (5)控制台程序获取菜单_第2张图片
    (5)控制台程序获取菜单_第3张图片
    Service.cs
using CM.Repository;
using System;
using System.Collections.Generic;
using System.Text;

namespace CM.Services
{
    public class Service : Repository where T : class, new()
    {
    }
}
  • 在工具栏添加 控制台应用(.NET Core)
    (5)控制台程序获取菜单_第4张图片
    (5)控制台程序获取菜单_第5张图片
    (5)控制台程序获取菜单_第6张图片
  • 右击标题(ShowMenuCApp) 添加引用,选择CM.Services,然后编写 Porgram.cs 代码
    (5)控制台程序获取菜单_第7张图片
    (5)控制台程序获取菜单_第8张图片
    (5)控制台程序获取菜单_第9张图片
using System;
using CM.Models;
using CM.Services;
namespace ShowMenuCApp
{
    class Program
    {
        static void Main(string[] args)
        {
            Service svr = new Service();
            foreach (var o in svr.GetList())
            {
                Console.WriteLine(o.name);
            }
            Console.ReadLine();
        }
    }
}
  • 右击标题(ShowMenuCApp) 选择调试 – 启动新实例
    (5)控制台程序获取菜单_第10张图片
  • 运行结果,将数据库表中的字段显示在控制台上
    (5)控制台程序获取菜单_第11张图片

你可能感兴趣的:(.NET课程实践)