Coder Social home page Coder Social logo

Comments (3)

dj-nitehawk avatar dj-nitehawk commented on July 24, 2024

already doable. see here: https://mongodb-entities.com/wiki/DB-Instances-Global-Filters.html

from mongodb.entities.

li-zheng-hao avatar li-zheng-hao commented on July 24, 2024

global filter not work as expected, when delete a document, it should update IsDeleted to true rather than do nothing

sample code :

public class TestModel:Entity,ISoftDelete
{
    public string Name { get; set; }

    public bool IsDeleted { get; set; }
}

interface ISoftDelete
{
    bool IsDeleted { get; set; }
}

public class MyDBContext : DBContext
{
    public MyDBContext()
    {
        SetGlobalFilterForInterface<ISoftDelete>("{ IsDeleted : false }");
    }
}

unit test:

[Fact]
public async Task Test1()
{
    await DB.InitAsync("testdb",
        MongoClientSettings.FromConnectionString(
            "mongodb://root:******@172.10.2.200:30000"));

    var context = new MyDBContext();

    var model = new TestModel();

    await context.InsertAsync(model);

    await context.DeleteAsync<TestModel>(model.ID);

    var result = await context.Find<TestModel>().MatchID(model.ID).ExecuteFirstAsync();

    // failure here, result should be null
    Assert.Null(result);
}

@dj-nitehawk

from mongodb.entities.

li-zheng-hao avatar li-zheng-hao commented on July 24, 2024

test case 2:

[Fact]
public async Task Test2()
{
    await DB.InitAsync("testdb",
        MongoClientSettings.FromConnectionString(
            "mongodb://root:***@172.10.2.200:30000"));

    var context = new MyDBContext();

    var model = new TestModel()
    {
        Name = "already deleted",
    };

    await context.InsertAsync(model);
    
    await context.DeleteAsync<TestModel>(it=>it.Name==model.Name);
    
    var result = await context.Find<TestModel>().Match(it=>it.Name==model.Name).ExecuteFirstAsync();

    // failure here, result should be null
    Assert.Null(result);
}

result:

Assert.Null() Failure
Expected: (null)
Actual:   TestModel { ID = "6492beae6462445f38de3142", IsDeleted = False, Name = "already deleted" }

from mongodb.entities.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.