2005-01-25 Atsushi Enomoto <atsushi@ximian.com>
authorAtsushi Eno <atsushieno@gmail.com>
Tue, 25 Jan 2005 07:34:24 +0000 (07:34 -0000)
committerAtsushi Eno <atsushieno@gmail.com>
Tue, 25 Jan 2005 07:34:24 +0000 (07:34 -0000)
* DataView.cs : missing attributes.

svn path=/trunk/mcs/; revision=39473

mcs/class/System.Data/System.Data/ChangeLog
mcs/class/System.Data/System.Data/DataView.cs

index 2611c6add04604c82b1b5ed7beef94ea16cbe884..62fe2008c59ef2016f6b3b6cdd4e6052a3c07e65 100644 (file)
@@ -1,3 +1,7 @@
+2005-01-25  Atsushi Enomoto  <atsushi@ximian.com>
+
+       * DataView.cs : missing attributes.
+
 2005-01-24  Atsushi Enomoto  <atsushi@ximian.com>
 
        * DataRowView.cs : implemented CreateChildView().
@@ -14,7 +18,7 @@
 
        * DataColumn.cs : set_MaxLength is not allowed when it is mapped to
          SimpleContent. (However, it is weird but it never fails when we set
-         ColumnMapping = MappingType.SimpleContent when we have MaxLength.)
+         ColumnMapping = MappingType.SimpleContent when we fhave MaxLength.)
 
 2005-01-21  Atsushi Enomoto  <atsushi@ximian.com>
 
index ec8b848de2b6f594d4f1b3041b89d08b85a70cff..c1c54ee3fff0420c959949a3284f380930aba04c 100644 (file)
@@ -254,6 +254,7 @@ namespace System.Data
                [DataSysDescription ("Indicates the table this DataView uses to get data.")]
                [DefaultValue (null)]
                [RefreshProperties (RefreshProperties.All)]
+               [TypeConverter (typeof (DataTableTypeConverter))]
                public DataTable Table {
                        [MonoTODO]
                        get {
@@ -409,6 +410,8 @@ namespace System.Data
                [DataSysDescription ("Indicates the data returned by this DataView has somehow changed.")]
                public event ListChangedEventHandler ListChanged;
 
+               [Browsable (false)]
+               [DataSysDescription ("Indicates whether the view is open.")]
                protected bool IsOpen {
                        [MonoTODO]
                        get {