I want to Ask, Is it good to use SQL View with ORMs Like Entity framework? And Why?
For further actions, you may consider blocking this person and/or reporting abuse
I want to Ask, Is it good to use SQL View with ORMs Like Entity framework? And Why?
For further actions, you may consider blocking this person and/or reporting abuse
Dennis Persson -
Ben Halpern -
Kanani Nirav -
Andrey -
Once suspended, hassanhgfd will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, hassanhgfd will be able to comment and publish posts again.
Once unpublished, all posts by hassanhgfd will become hidden and only accessible to themselves.
If hassanhgfd is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to Hassan Bazuhair.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community safe. Here is what you can do to flag hassanhgfd:
Unflagging hassanhgfd will restore default visibility to their posts.
Top comments (1)
Absolutely. View without built in filters is always a good idea over directly referencing tables especially with EF. This way we dont have to worry about table changes like adding non null column (This could bite us in case of inserts with direct table references).