aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.HardwareDesigner/ViewModels/MainViewVM.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-08-23 11:17:23 +0300
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-08-23 11:17:23 +0300
commitea97f593f82a1176125901c257c8e81c45c23b67 (patch)
tree338a2fee2470779e6094d21b586d6b2a653f4c94 /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.HardwareDesigner/ViewModels/MainViewVM.cs
parenta8718859eea4329ec9ecd3f7155e0001aa610c3d (diff)
downloadTango-ea97f593f82a1176125901c257c8e81c45c23b67.tar.gz
Tango-ea97f593f82a1176125901c257c8e81c45c23b67.zip
ObservablesContext is now LazyLoading = 'false' by default.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.HardwareDesigner/ViewModels/MainViewVM.cs')
-rw-r--r--Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.HardwareDesigner/ViewModels/MainViewVM.cs3
1 files changed, 0 insertions, 3 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.HardwareDesigner/ViewModels/MainViewVM.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.HardwareDesigner/ViewModels/MainViewVM.cs
index 54b954745..6ba28cb72 100644
--- a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.HardwareDesigner/ViewModels/MainViewVM.cs
+++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.HardwareDesigner/ViewModels/MainViewVM.cs
@@ -102,7 +102,6 @@ namespace Tango.MachineStudio.HardwareDesigner.ViewModels
if (_db != null) _db.Dispose();
_db = ObservablesContext.CreateDefault();
- _db.Configuration.LazyLoadingEnabled = false;
CurrentVersion.HardwareMotors = _db.HardwareMotorTypes.ToList().Select(x => new HardwareMotor() { HardwareMotorType = x }).ToObservableCollection();
CurrentVersion.HardwareDancers = _db.HardwareDancerTypes.ToList().Select(x => new HardwareDancer() { HardwareDancerType = x }).ToObservableCollection();
@@ -117,7 +116,6 @@ namespace Tango.MachineStudio.HardwareDesigner.ViewModels
{
using (var db = ObservablesContext.CreateDefault())
{
- db.Configuration.LazyLoadingEnabled = false;
_hardwareVersions = db.HardwareVersions.ToObservableCollection();
InvokeUI(() =>
{
@@ -131,7 +129,6 @@ namespace Tango.MachineStudio.HardwareDesigner.ViewModels
if (_db != null) _db.Dispose();
_db = ObservablesContext.CreateDefault();
- _db.Configuration.LazyLoadingEnabled = false;
CurrentVersion = _db.Adapter.GetHardwareVersion(x => x.Guid == selectedVersion.Guid);