Skip to content

Commit 4a09408

Browse files
Merge pull request #179 from matteobortolazzo/dev
Add deleted flag
2 parents 6d1550b + 1fdc43d commit 4a09408

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
* **Bulk Delete**: Adds support to replication ([#171](https://github.com/matteobortolazzo/couchdb-net/issues/171))
66
* **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))
78

89
## Bug Fixes
910

LATEST_CHANGE.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
* **Bulk Delete**: Adds support to replication ([#171](https://github.com/matteobortolazzo/couchdb-net/issues/171))
44
* **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))
56

67
## Bug Fixes
78

src/CouchDB.Driver/Types/CouchDocument.cs

+10
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,16 @@ protected CouchDocument()
3838
[JsonProperty("rev", NullValueHandling = NullValueHandling.Ignore)]
3939
private string RevOther { set => Rev = value; }
4040

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+
4151
[DataMember]
4252
[JsonProperty("_conflicts")]
4353
private readonly List<string> _conflicts;

0 commit comments

Comments
 (0)