How to implement Row Level Security (RLS) on Mongo DB

2.5k views Asked by At

Can we implement row level security on Mongo Db with node js or something else? Does it called as document level security on MongoDb? Does anyone have such an example or document about this?

1

There are 1 answers

1
Sergio Tulentsev On

Nope, mongodb does not support that finely grained restrictions. The finest you can do is collection-level.

So i asked this question if I can implement row level security specifically with the help of node.js, mongodb c#, entity framework vs..

Security features like this must be natively supported by the database. Application-side implementation will be unreliable and with poor performance.