﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
34611	Support getting None in qs.get()	Amin Aminian	nobody	"The `get()` method in `Queryset` class would raise `self.model.DoesNotExist` exception if no records found for the params.

In cases that we don't want to handle exception and we don't want to use `try...except`, we use something like this:


{{{
qs.filter(...).first()
}}}

Which would return `None` and then there is no need to handle excpetion.

Can't we have it in `get` method itself ? I mean something like `get(raise_exception=False)` to return `None` instead of raising exception."	New feature	closed	Database layer (models, ORM)	4.2	Normal	duplicate			Unreviewed	0	0	0	0	0	0
