Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
C# nullable type blues
Message
 
To
27/11/2015 12:05:09
General information
Forum:
ASP.NET
Category:
Other
Environment versions
Environment:
C# 5.0
OS:
Windows 10
Network:
Windows 2008 Server
Database:
MS SQL Server
Application:
Desktop
Miscellaneous
Thread ID:
01627989
Message ID:
01628000
Views:
45
>You need to check turnoverTransactiions.Comput(....).HasValue. If it does, then you can do the cast.
>
You're right. If empty, it's not null, but DBNull.Value. That's why nullable types are of no use here.

Many thanks!
>>
>>        public static void addTurnover(D010Invoices.Invoice invoice)
>>        {        
>>            var turnoverTransactions = D010.loadTurnover(invoice.document);
>>            decimal total = 0;
>>            decimal? totalPaid = 0;
>>            if (turnoverTransactions.Rows.Count > 0)
>>            {
>>                total = (decimal)turnoverTransactions.Compute("sum(amount)", "true");
>>                totalPaid = (decimal?)turnoverTransactions.Compute("sum(amount)", "document like 'AP*'");
>>                if (totalPaid==null)
>>                {
>>                    totalPaid = 0;
>>                }
>>
>>            }
>>
>>
>>.... so why do I get a casting error in the totalPaid line when the document does not start with "AP"?
>>
>>*** UPDATE ***
>>Because DataTable.Compute() returns DBNull.Value and not null....

If things have the tendency to go your way, do not worry. It won't last. Jules Renard.
Previous
Reply
Map
View

Click here to load this message in the networking platform