File tree 3 files changed +11
-0
lines changed
3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 4
4
5
5
* ** Bulk Delete** : Adds support to replication ([ #171 ] ( https://github.com/matteobortolazzo/couchdb-net/issues/171 ) )
6
6
* ** Revision Support** : Support for revisions in add and update ([ #170 ] ( https://github.com/matteobortolazzo/couchdb-net/pull/170 ) )
7
+ * ** Deleted Flag** : Added deleted flag on document ([ #154 ] ( https://github.com/matteobortolazzo/couchdb-net/pull/154 ) )
7
8
8
9
## Bug Fixes
9
10
Original file line number Diff line number Diff line change 2
2
3
3
* ** Bulk Delete** : Adds support to replication ([ #171 ] ( https://github.com/matteobortolazzo/couchdb-net/issues/171 ) )
4
4
* ** Revision Support** : Support for revisions in add and update ([ #170 ] ( https://github.com/matteobortolazzo/couchdb-net/pull/170 ) )
5
+ * ** Deleted Flag** : Added deleted flag on document ([ #154 ] ( https://github.com/matteobortolazzo/couchdb-net/pull/154 ) )
5
6
6
7
## Bug Fixes
7
8
Original file line number Diff line number Diff line change @@ -38,6 +38,15 @@ protected CouchDocument()
38
38
[ JsonProperty ( "rev" , NullValueHandling = NullValueHandling . Ignore ) ]
39
39
private string RevOther { set => Rev = value ; }
40
40
41
+ [ JsonIgnore ]
42
+ public bool Deleted { get ; private set ; }
43
+ [ DataMember ]
44
+ [ JsonProperty ( "_deleted" , NullValueHandling = NullValueHandling . Ignore ) ]
45
+ private bool DeletedOther
46
+ {
47
+ set => Deleted = value ;
48
+ }
49
+
41
50
[ DataMember ]
42
51
[ JsonProperty ( "_conflicts" ) ]
43
52
private readonly List < string > _conflicts ;
You can’t perform that action at this time.
0 commit comments