DefinitionA nullable Type is a data type is that contain the defined data type or the value of null.You should note here that here variable datatype has been given and then only it can be used.This nullable type concept is not comaptible with "var".I will explain this with syntax in next section.
Declaration:Any DataType can be declared nullable type with the help of operator "?". Example of the syntax is as Follows :- int? i = null;As discussed in previous section "var" is not compatible with this Nullable Type. So we will have Compile Time error if we are declaring something like :- var? i = null;though following syntax is completely fine :- var i = 4;Usage :Main usage of this nullable type is when we are passing any parameter to Stored Procedure or Database objects. If a column in a Table allows Null value , then in this case we should use Nullable type.For example say I have a Stored Procedure which accepts two in parameter @A and @ B. It gives me back one out Parameter @C.This output Parameter can be Null also. So in that case we should use a Nullable Variable which can take Null also as allowed values.So to conclude, Nullable Types allows us to declare variables in Dotnet which can be used effectively while dealing with Database.Different Types of Operations on this Nullanle Type and Expected Results :-Now let us discuss in detail few operation on these Nullable Type :-
I am currently a CEO of a small E-learning company in India. We are very much active in making training videos , writing books and corporate... Know more
You need to be a premium member to use this feature. To access it, you'll have to upgrade your membership.
Become a sharper developer and jumpstart your career.
$0
$
. 00
monthly
For Basic members:
$20
For Premium members:
$45
For Elite members: