Posts by Reis86 • 161 points
3 posts
-
3
votes1
answer174
viewsQ: Sql Server Stored Procedures
I am starting the development of an application, basically it is a managerial control of companies. The application will issue NFC-e, Nfe, control stock, finance and etc, the database will be hosted…
-
8
votes2
answers88
viewsQ: Sql Server 2014 Null Value
I am beginner in Sql server, I am in doubt regarding the following code: declare @var nvarchar(50) = null declare @bool bit if (@var = null) set @bool = 1 else set @bool = 0 print @bool The variable…
-
3
votes2
answers277
viewsQ: Value of Enum C#
I have a question regarding the following code snippet: public enum TipoPessoa { [System.Xml.Serialization.XmlEnumAttribute("1")] Fisica = 1, [System.Xml.Serialization.XmlEnumAttribute("2")]…