Program.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using CodeFirstExistingDatabaseSample.ISMS_BASE;
  2. namespace CodeFirstExistingDatabaseSample
  3. {
  4. class Program
  5. {
  6. static void Main(string[] args)
  7. {
  8. //using (var db = new ISMS_BASEContext())
  9. //{
  10. // // Create and save a new Blog
  11. // //var name = Console.ReadLine();
  12. // //var blog = new Blog { Name = name };
  13. // //db.Blogs.Add(blog);
  14. // //db.SaveChanges();
  15. // // Display all Blogs from the database
  16. // var query = from b in db.ImDeviceData
  17. // orderby b.DeviceId
  18. // select b;
  19. // Console.WriteLine("All blogs in the database:");
  20. // foreach (var item in query)
  21. // {
  22. // Console.WriteLine($"数据名称:{item.DataName}");
  23. // }
  24. // var query1 = from b in db.ImProtectDevices
  25. // orderby b.DeviceAddr
  26. // select b;
  27. // foreach (var item in query1)
  28. // {
  29. // Console.WriteLine($"保护装置名称:{item.DeviceName}");
  30. // }
  31. // Console.WriteLine("Press any key to exit...");
  32. // Console.ReadKey();
  33. //}
  34. }
  35. }
  36. }