In this blog post: EF4 Code First Control Unicode and Decimal Precision, Scale with Attributes, Dane Morgridge used attributes to control the creation of different types on your database.

...And I found this pretty unique BTW!!!

How do I generate money type fields in my resulting database using code first API of EF CTP5, if is possible to do it from your model, using conventions or attributes?

Sorry about my English is not my main language.

Thanks in advance.

link|improve this question
2  
In general (and unless you're working with an existing database schema), I'd avoid using the SQL money datatype. You're better off using decimals with specific precision and scale that meet your application requirements – Damien_The_Unbeliever Jan 28 '11 at 15:31
1  
@Damien interesting... why is that? – Ilia G Jun 20 '11 at 20:20
feedback

2 Answers

up vote 5 down vote accepted

For example, consider this Invoice class:

public class Invoice
{
    public int InvoiceId { get; set; }                
    public decimal Amount { get; set; }
}

You can do it with fluent API:

protected override void OnModelCreating(ModelBuilder modelBuilder)
{
    modelBuilder.Entity<Invoice>()
                .Property(i => i.Amount)
                .HasColumnType("Money");
}

Or you can do it with Data Annotations:

public class Invoice
{
    public int InvoiceId { get; set; }                

    [Column(TypeName="Money")]
    public decimal Amount { get; set; }
}
link|improve this answer
Unfortunately, EF 4.3 (release version) ignores money data type and creates decimal(18,0) definition instead (Does not honor Column attribute and HasColumnType configurations). This definitely is a bug. – George Chakhidze Feb 16 at 9:10
1  
EF 4.3.1 fixed this issue where the Column attribute was not being honoured. Using [Column(TypeName="Money")] works as expected now. blogs.msdn.com/b/adonet/archive/2012/02/29/… – Richard Reddy Mar 4 at 8:01
feedback
using System.Data.Entity.ModelConfiguration.Configuration.Properties.Primitive;

public class MoneyAttribute : Attribute { }

public class MoneyAttributeConvention : AttributeConfigurationConvention<PropertyInfo, DecimalPropertyConfiguration, MoneyAttribute> {
    public override void Apply(PropertyInfo memberInfo, DecimalPropertyConfiguration configuration, MoneyAttribute attribute) {
        configuration.ColumnType = "money";
    }
}

then you use like that

[Money]
public decimal Value { get; set; }
link|improve this answer
BinaryPropertyConfiguration doesn't have the HasColumnType member, I try this approach but it didn't work – BBHorus Jan 29 '11 at 0:14
Sorry, the correct is configuration.ColumnType = "Money";. I just edit the post. Thanks. – Kim Tranjan Jan 29 '11 at 1:14
Still isn't working... I don't know why – BBHorus Jan 29 '11 at 2:17
ahahaha, omg i'm so sorry my fault.. post edited and now it should work.. thanks buddy – Kim Tranjan Jan 29 '11 at 10:45
Ok now it works thank you! – BBHorus Jan 29 '11 at 17:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.