aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Utilities/Tango.DBObservablesGenerator.CLI
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-03-18 18:43:48 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-03-18 18:43:48 +0200
commit96352ac46ccb871783c63fd98efe034091214b7e (patch)
treec8e0893784457974a8e005d27573e0c3b285f2d9 /Software/Visual_Studio/Utilities/Tango.DBObservablesGenerator.CLI
parent4f4b5f052200fde6ccc6aa06094904cf9bf3106b (diff)
downloadTango-96352ac46ccb871783c63fd98efe034091214b7e.tar.gz
Tango-96352ac46ccb871783c63fd98efe034091214b7e.zip
Make android DAL observable !
Diffstat (limited to 'Software/Visual_Studio/Utilities/Tango.DBObservablesGenerator.CLI')
-rw-r--r--Software/Visual_Studio/Utilities/Tango.DBObservablesGenerator.CLI/ObservablesGenerator.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Software/Visual_Studio/Utilities/Tango.DBObservablesGenerator.CLI/ObservablesGenerator.cs b/Software/Visual_Studio/Utilities/Tango.DBObservablesGenerator.CLI/ObservablesGenerator.cs
index 70664508c..ba950f3db 100644
--- a/Software/Visual_Studio/Utilities/Tango.DBObservablesGenerator.CLI/ObservablesGenerator.cs
+++ b/Software/Visual_Studio/Utilities/Tango.DBObservablesGenerator.CLI/ObservablesGenerator.cs
@@ -228,7 +228,7 @@ namespace Tango.DBObservablesGenerator.CLI
codeField.Type = DalNameToStandardName(field.PropertyType.Name).Singularize(false);
codeField.Construct = true;
}
- else if (field.PropertyType == typeof(Byte[]))
+ else if (field.PropertyType == typeof(Byte[]) || field.PropertyType == typeof(Boolean) || field.PropertyType == typeof(Double))
{
codeField.Type = field.PropertyType.Name.ToLower();
}