File tree 3 files changed +12
-0
lines changed
3 files changed +12
-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,16 @@ protected CouchDocument()
38
38
[ JsonProperty ( "rev" , NullValueHandling = NullValueHandling . Ignore ) ]
39
39
private string RevOther { set => Rev = value ; }
40
40
41
+ [ DataMember ]
42
+ [ JsonIgnore ]
43
+ public bool Deleted { get ; private set ; }
44
+ [ DataMember ]
45
+ [ JsonProperty ( "_deleted" , NullValueHandling = NullValueHandling . Ignore ) ]
46
+ private bool DeletedOther
47
+ {
48
+ set => Deleted = value ;
49
+ }
50
+
41
51
[ DataMember ]
42
52
[ JsonProperty ( "_conflicts" ) ]
43
53
private readonly List < string > _conflicts ;
You can’t perform that action at this time.
0 commit comments