diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-03-18 18:43:48 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-03-18 18:43:48 +0200 |
| commit | 96352ac46ccb871783c63fd98efe034091214b7e (patch) | |
| tree | c8e0893784457974a8e005d27573e0c3b285f2d9 /Software/Visual_Studio/Utilities/Tango.DBObservablesGenerator.CLI | |
| parent | 4f4b5f052200fde6ccc6aa06094904cf9bf3106b (diff) | |
| download | Tango-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.cs | 2 |
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(); } |
