From 688ae81330a8c832d7e64af496faadd29b229d4e Mon Sep 17 00:00:00 2001 From: Simon G Date: Tue, 22 Sep 2020 14:05:51 +0200 Subject: [PATCH] - fix usage of GBaseTable attribute --- Test.GBase/GBaseIntegrationTest/Group.cs | 2 +- Test.GBase/GBaseIntegrationTest/Item.cs | 2 +- Test.GBase/TestClasses/Foo.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Test.GBase/GBaseIntegrationTest/Group.cs b/Test.GBase/GBaseIntegrationTest/Group.cs index d1dc03c..24a77de 100644 --- a/Test.GBase/GBaseIntegrationTest/Group.cs +++ b/Test.GBase/GBaseIntegrationTest/Group.cs @@ -8,7 +8,7 @@ using GBase.Attributes; namespace Test.GBase.GBaseIntegrationTest { - [GBaseTable] + [GBaseTable("Groups")] public class Group : NotifyGBaseEntryChanged, IGroup { public Group() diff --git a/Test.GBase/GBaseIntegrationTest/Item.cs b/Test.GBase/GBaseIntegrationTest/Item.cs index e1f32b0..5eaecc7 100644 --- a/Test.GBase/GBaseIntegrationTest/Item.cs +++ b/Test.GBase/GBaseIntegrationTest/Item.cs @@ -7,7 +7,7 @@ using GBase.Attributes; namespace Test.GBase.GBaseIntegrationTest { - [GBaseTable] + [GBaseTable("Items")] public class Item : NotifyGBaseEntryChanged, IItem { diff --git a/Test.GBase/TestClasses/Foo.cs b/Test.GBase/TestClasses/Foo.cs index 0d4f1c2..2cfbb7c 100644 --- a/Test.GBase/TestClasses/Foo.cs +++ b/Test.GBase/TestClasses/Foo.cs @@ -7,7 +7,7 @@ using GBase.Attributes; namespace Test.GBase.TestClasses { - [GBaseTable] + [GBaseTable("Foo")] public class Foo : NotifyGBaseEntryChanged { private string _name;