Confusing data types...

  • Thread starter Thread starter Andy B
  • Start date Start date
A

Andy B

I am working with AdventureWorksLT database. I ran across these datatypes in
the Product table: money, decimal and UNIQUEIDENTIFIER. what are the
equivalent of these in c#?
 
Andy said:
I am working with AdventureWorksLT database. I ran across these datatypes in
the Product table: money, decimal and UNIQUEIDENTIFIER. what are the
equivalent of these in c#?

Guess:
decimal
decimal
Guid

Arne
 
Hi,

IIRC in MSDN you can find this,

In any case, UNIQUEIDENTIFIER = Guid , money,decimal = decimal (sometimes
money is treated as Double)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top