इकाई फ्रेमवर्क माइग्रेशन में आवश्यक फ़ील्ड के लिए डिफ़ॉल्ट मान?


91

मैंने अपने [Required]एक मॉडल से ASP.NET MVC एप्लिकेशन में डेटा एनोटेशन जोड़ा है । माइग्रेशन बनाने के बाद, Update-Databaseनिम्न त्रुटि में कमांड परिणाम चल रहा है :

मान को पूर्ण रूप से स्तंभ 'निर्देशक' में नहीं जोड़ा जा सकता, तालिका 'MOVIES_cf7bad808fa94f89afa2e5dae1161e78.dbo.Movies'; कॉलम नल की अनुमति नहीं देता है। अद्यतन विफल। बयान समाप्त कर दिया गया है।

यह उनके Directorकॉलम में NULL वाले कुछ रिकॉर्ड्स के कारण है । मैं उन मूल्यों को स्वचालित रूप से कुछ डिफ़ॉल्ट में कैसे बदल सकता हूं ("जॉन डो") निर्देशक?

यहाँ मेरा मॉडल है:

  public class Movie
    {
        public int ID { get; set; }
        [Required]
        public string Title { get; set; }

        [DataType(DataType.Date)]
        public DateTime ReleaseDate { get; set; }

        [Required]
        public string Genre { get; set; }

        [Range(1,100)]
        [DataType(DataType.Currency)]
        public decimal Price { get; set; }

        [StringLength(5)]
        public string Rating { get; set; }

        [Required]     /// <--- NEW
        public string Director { get; set; }
    }

और यहाँ मेरा नवीनतम प्रवास है:

public partial class AddDataAnnotationsMig : DbMigration
{
    public override void Up()
    {
        AlterColumn("dbo.Movies", "Title", c => c.String(nullable: false));
        AlterColumn("dbo.Movies", "Genre", c => c.String(nullable: false));
        AlterColumn("dbo.Movies", "Rating", c => c.String(maxLength: 5));
        AlterColumn("dbo.Movies", "Director", c => c.String(nullable: false));
    }

    public override void Down()
    {
        AlterColumn("dbo.Movies", "Director", c => c.String());
        AlterColumn("dbo.Movies", "Rating", c => c.String());
        AlterColumn("dbo.Movies", "Genre", c => c.String());
        AlterColumn("dbo.Movies", "Title", c => c.String());
    }
}

जवाबों:


74

अगर मुझे सही याद है, तो कुछ इस तरह काम करना चाहिए:

AlterColumn("dbo.Movies", "Director", c => c.String(nullable: false, defaultValueSql: "'John Doe'"));

नोट: DefaultValueSql पैरामीटर मान को शब्दशः SQL कथन के रूप में माना जाता है, इसलिए यदि आवश्यक मूल्य प्रभावी रूप से एक स्ट्रिंग है, जैसे जॉन डो उदाहरण, तो मूल्य के चारों ओर एकल उद्धरण आवश्यक हैं।


9
मैंने भी ऐसा सोचा था, लेकिन यह मौजूदा रिकॉर्ड के लिए काम नहीं करता है। इसलिए मुझे अभी भी एक त्रुटि मिलती है।
एंड्री Drozdyuk

@drozzy शायद यह बग की तरह है: EF 4.3.1 माइग्रेशन अपवाद - AlterColumn defaultValueSql अलग-अलग तालिकाओं के लिए एक ही डिफ़ॉल्ट बाधा नाम बनाता है आप IS NULLअपनी क्वेरी द्वारा चेक के साथ पंक्तियों को अपडेट कर सकते हैं ।
वेबडेवलपर

दिलचस्प है, लेकिन मुझे यकीन नहीं है कि मैं समझता हूं कि वे किस बारे में बात कर रहे हैं। हालांकि, अगर यह एक बग है, तो हाँ, यह समझ में आएगा।
एंड्री Drozdyuk

6
मुझे लगता है कि यह होना चाहिए: "'John Doe'"- आपको SQL उद्धरण का उपयोग करने की आवश्यकता है।
शॉन

1
@webdeveloper, मुझे नहीं लगता कि यह एक बग है, AlterColumnवर्तमान मूल्यों को अपडेट क्यों करेगा ? यह एक डीडीएल (डीएमएल नहीं) कमांड है।
एंटोन

110

@Webdeveloper और @Pushpendra के उत्तर के अलावा, आपको मौजूदा पंक्तियों को अपडेट करने के लिए मैन्युअल रूप से अपने माइग्रेशन में अपडेट जोड़ना होगा। उदाहरण के लिए:

public override void Up()
{
    Sql("UPDATE [dbo].[Movies] SET Title = 'No Title' WHERE Title IS NULL");
    AlterColumn("dbo.Movies", "Title", c => c.String(nullable: false,defaultValue:"MyTitle"));
}

ऐसा इसलिए है क्योंकि AlterColumnतालिका विनिर्देश में स्तंभ के डिफ़ॉल्ट को कुछ विशिष्ट मान पर सेट करने के लिए DDL का उत्पादन करता है। DDL डेटाबेस में मौजूदा पंक्तियों को प्रभावित नहीं करता है।

आप वास्तव में एक ही समय में दो बदलाव कर रहे हैं (डिफ़ॉल्ट सेट करना और कॉलम को NULL नहीं बनाना) और उनमें से प्रत्येक व्यक्तिगत रूप से मान्य है, लेकिन चूंकि आप एक ही समय में दोनों बना रहे हैं, आप सिस्टम से 'उम्मीद कर सकते हैं' समझदारी से 'अपने इरादे का एहसास करें और सभी को सेट करें NULL मानों को डिफ़ॉल्ट मान पर , लेकिन हर समय यह अपेक्षित नहीं है।

मान लें कि आप केवल कॉलम के लिए डिफ़ॉल्ट मान सेट कर रहे हैं, और इसे नहीं बना रहे हैं। आप स्पष्ट रूप से सभी NULL रिकॉर्ड्स को आपके द्वारा प्रदान किए गए डिफ़ॉल्ट के साथ अपडेट होने की उम्मीद नहीं करते हैं।

इसलिए, मेरी राय में, यह एक बग नहीं है, और मैं नहीं चाहता कि ईएफ मेरे डेटा को उन तरीकों से अपडेट करे जो मैं स्पष्ट रूप से इसे करने के लिए नहीं कहता हूं। डेवलपर डेटा के साथ क्या करना है, इस बारे में सिस्टम को निर्देश देने के लिए जिम्मेदार है।


17
Google के माध्यम से इस उत्तर को खोजने वाले लोगों के लिए: मैंने अभी EF6 में यह कोशिश की है और अपडेट स्टेटमेंट आवश्यक नहीं लगता है (अब)। मुझे लगता है कि वे इसे सब के बाद बग मानते थे।
EPLKleijntjens

3
मैं इसके लिए वाउच भी कर सकता हूं। यदि आपको एक अशक्त फ़ील्ड के लिए भी डिफ़ॉल्ट मान की आवश्यकता है, तो बस इसे डिफ़ॉल्ट मान के साथ पहले नहीं-अशक्त में बदलें और फिर इसे वापस अशक्त में बदल दें। बहुत आसान है जब आपने एक गैर-अशक्त क्षेत्र को एक बच्चे की कक्षा में जोड़ा :)
राउटर स्कूट

1
स्पष्टीकरण पर हाजिर। AlterColumn () सिर्फ कॉलम की परिभाषा बदल देता है। यह मौजूदा रिकॉर्ड को प्रभावित नहीं करता है
कोरयेम

10
public partial class AddDataAnnotationsMig : DbMigration
{
    public override void Up()
    {
        AlterColumn("dbo.Movies", "Title", c => c.String(nullable: false,defaultValue:"MyTitle"));
        AlterColumn("dbo.Movies", "Genre", c => c.String(nullable: false,defaultValue:"Genre"));
        AlterColumn("dbo.Movies", "Rating", c => c.String(maxLength: 5));
        AlterColumn("dbo.Movies", "Director", c => c.String(nullable: false,defaultValue:"Director"));

    }

    public override void Down()
    {       
        AlterColumn("dbo.Movies", "Director", c => c.String());
        AlterColumn("dbo.Movies", "Rating", c => c.String());
        AlterColumn("dbo.Movies", "Genre", c => c.String());
        AlterColumn("dbo.Movies", "Title", c => c.String());       
    }
}

2
उम ... धन्यवाद, लेकिन यह कैसे @ webdeveloper के उत्तर से अलग है?
एंड्री Drozdyuk

1
यह आपको यह नहीं बताता कि आपको डिफ़ॉल्ट मान पैरामीटर कहां जोड़ना है
पुष्पेंद्र

1
@Pushpendra, यह मज़ेदार है कि डेवलपर्स कैसे भूल जाते हैं कि एक समय में, वे बहुत कुछ नहीं जानते थे। मुझे विस्तृत उत्तर पसंद हैं जो सभी स्तरों को संतुष्ट करते हैं। बहुत ही उत्तम कार्य!
उपयोगी उत्पाद

5

यह सुनिश्चित नहीं था कि यह विकल्प हमेशा आसपास था, लेकिन बस एक समान मुद्दे में भाग गया, पाया कि मैं निम्नलिखित के बिना किसी भी मैनुअल अपडेट को चलाने के बिना डिफ़ॉल्ट मान सेट करने में सक्षम था

defaultValueSql: "'NY'"

मुझे एक त्रुटि मिली जब प्रदान किया गया मूल्य "NY"तब मुझे एहसास हुआ कि वे एक SQL मूल्य की उम्मीद कर रहे हैं जैसे "GETDATE()"मैंने कोशिश की "'NY'"और उसने चाल चली

पूरी लाइन इस तरह दिखती है

AddColumn("TABLE_NAME", "State", c => c.String(maxLength: 2, nullable: false, defaultValueSql: "'NY'"));

इस जवाब के लिए धन्यवाद , मुझे सही रास्ते पर ले गया


2

EF Core 2.1 के बाद से, आप MigrationBuilder.UpdateDataकॉलम को बदलने से पहले मूल्यों को बदलने के लिए उपयोग कर सकते हैं (कच्चे SQL का उपयोग करने की तुलना में क्लीनर):

protected override void Up(MigrationBuilder migrationBuilder)
{
    // Change existing NULL values to NOT NULL values
    migrationBuilder.UpdateData(
        table: tableName,
        column: columnName,
        value: valueInsteadOfNull,
        keyColumn: columnName,
        keyValue: null);

    // Change column type to NOT NULL
    migrationBuilder.AlterColumn<ColumnType>(
        table: tableName,
        name: columnName,
        nullable: false,
        oldClrType: typeof(ColumnType),
        oldNullable: true);
}

1

मैंने पाया कि सिर्फ ऑटो-प्रॉपर्टी इनिशियलाइज़र को एंटिटी प्रॉपर्टी पर इस्तेमाल करने से काम चल जाता है।

उदाहरण के लिए:

public class Thing {
    public bool IsBigThing { get; set; } = false;
}

2
इसका एक अच्छा जवाब (मेरी मदद की), लेकिन यह डेटाबेस में एक डिफ़ॉल्ट मान नहीं जोड़ता है, यह कोड में मान सेट करता है।
chris31389

सही है कि प्रवासन के बाद डेटाबेस में डिफ़ॉल्ट मूल्य नहीं जोड़ा गया
चेतन चौधरी

1

इन समस्याओं के होने पर मैन्युअल रूप से हस्तक्षेप करने के तरीके पर कई अन्य प्रतिक्रियाएं ध्यान केंद्रित करती हैं।

माइग्रेशन उत्पन्न करने के बाद माइग्रेशन में निम्न परिवर्तन करें:

  1. किसी डिफ़ॉल्टValue या defaultSql कथन को शामिल करने के लिए कॉलम परिभाषा को संशोधित करें:
    AlterColumn("dbo.Movies", "Director", c => c.String(nullable: false, default: ""));

  2. AlterColumn से पहले मौजूदा कॉलम को भरने के लिए SQL स्टेटमेंट को इंजेक्ट करें:
    Sql("UPDATE dbo.Movies SET Director = '' WHERE Director IS NULL");

ध्यान रखें कि माइग्रेशन स्क्रिप्ट पर लागू मैन्युअल परिवर्तन ओवरराइट हो जाएगा यदि आप माइग्रेशन को फिर से मचानते हैं। पहले समाधान के लिए, प्रवासन पीढ़ी के हिस्से के रूप में स्वचालित रूप से फ़ील्ड पर डिफ़ॉल्ट मान को परिभाषित करने के लिए ईएफ का विस्तार करना बहुत आसान है।

नोट: EF स्वचालित रूप से आपके लिए ऐसा नहीं करता है क्योंकि डिफ़ॉल्ट मान कार्यान्वयन प्रत्येक RDBMS प्रदाता के लिए अलग होगा, लेकिन यह भी क्योंकि डिफ़ॉल्ट मानों का शुद्ध ईएफ रनटाइम में कम अर्थ है क्योंकि प्रत्येक पंक्ति सम्मिलित प्रत्येक संपत्ति के लिए वर्तमान मूल्य प्रदान करेगी, यहां तक ​​कि अगर यह अशक्त है, तो डिफ़ॉल्ट मान बाधा का मूल्यांकन कभी नहीं किया जाता है।
यह AlterColumn कथन एकमात्र समय है जब डिफ़ॉल्ट बाधा खेल में आती है, मुझे लगता है कि यह SQL Server माइग्रेशन कार्यान्वयन को डिजाइन करने वाली टीम के लिए एक कम प्राथमिकता बन जाती है।

निम्नलिखित समाधान एक कस्टम माइग्रेशन कोड जनरेटर के मेटाडेटा से गुजरने के लिए विशेषता संकेतन, मॉडल कॉन्फ़िगरेशन सम्मेलनों और स्तंभ एनोटेशन को जोड़ता है। यदि आप विशेषता संकेतन का उपयोग नहीं कर रहे हैं तो चरण 1 और 2 को प्रत्येक प्रभावित क्षेत्र के लिए धाराप्रवाह संकेतन से बदला जा सकता है।
यहां खेलने में बहुत सारी तकनीकें हैं, कुछ या सभी का उपयोग करने के लिए स्वतंत्र महसूस करें, मुझे आशा है कि यहां सभी के लिए मूल्य है


  1. डिफ़ॉल्ट मान
    बनाएँ या उपयोग करने के लिए डिफ़ॉल्ट मान को परिभाषित करने के लिए मौजूदा विशेषता को फिर से बनाने की घोषणा करें, इस उदाहरण के लिए हम DefaultValue नामक एक नई विशेषता बनाएंगे जो कि ComponentModel.DefaultValueAttribute से इनहेरिट करता है, क्योंकि उपयोग सहज है और मौजूदा होने का एक मौका है। कोड आधार पहले से ही इस विशेषता को लागू करते हैं। इस कार्यान्वयन के साथ आपको केवल DefaultValueSql तक पहुँचने के लिए इस विशिष्ट विशेषता का उपयोग करने की आवश्यकता है, जो दिनांक और अन्य कस्टम परिदृश्यों के लिए उपयोगी है।

    कार्यान्वयन

    [DefaultValue("Insert DefaultValue Here")]
    [Required]     /// <--- NEW
    public string Director { get; set; }
    
    // Example of default value sql
    [DefaultValue(DefaultValueSql: "GetDate()")]
    [Required]
    public string LastModified { get; set; }

    एट्रिब्यूट परिभाषा

    namespace EFExtensions
    {
        /// <summary>
        /// Specifies the default value for a property but allows a custom SQL statement to be provided as well. <see cref="MiniTuber.Database.Conventions.DefaultValueConvention"/>
        /// </summary>
        public class DefaultValueAttribute : System.ComponentModel.DefaultValueAttribute
        {
            /// <summary>
            /// Specifies the default value for a property but allows a custom SQL statement to be provided as well. <see cref="MiniTuber.Database.Conventions.DefaultValueConvention"/>
            /// </summary>
            public DefaultValueAttribute() : base("")
            {
            }
    
            /// <i
            /// <summary>
            /// Optional SQL to use to specify the default value.
            /// </summary>
            public string DefaultSql { get; set; }
    
            /// <summary>
            /// Initializes a new instance of the System.ComponentModel.DefaultValueAttribute
            /// class using a Unicode character.
            /// </summary>
            /// <param name="value">
            /// A Unicode character that is the default value.
            /// </param>
            public DefaultValueAttribute(char value) : base(value) { }
    
            /// <summary>
            /// Initializes a new instance of the System.ComponentModel.DefaultValueAttribute
            /// class using an 8-bit unsigned integer.
            /// </summary>
            /// <param name="value">
            /// An 8-bit unsigned integer that is the default value.
            /// </param>
            public DefaultValueAttribute(byte value) : base(value) { }
    
            /// <summary>
            /// Initializes a new instance of the System.ComponentModel.DefaultValueAttribute
            /// class using a 16-bit signed integer.
            /// </summary>
            /// <param name="value">
            /// A 16-bit signed integer that is the default value.
            /// </param>
            public DefaultValueAttribute(short value) : base(value) { }
    
            /// <summary>
            /// Initializes a new instance of the System.ComponentModel.DefaultValueAttribute
            /// class using a 32-bit signed integer.
            /// </summary>
            /// <param name="value">
            /// A 32-bit signed integer that is the default value.
            /// </param>
            public DefaultValueAttribute(int value) : base(value) { }
    
            /// <summary>
            /// Initializes a new instance of the System.ComponentModel.DefaultValueAttribute
            /// class using a 64-bit signed integer.
            /// </summary>
            /// <param name="value">
            /// A 64-bit signed integer that is the default value.
            /// </param>
            public DefaultValueAttribute(long value) : base(value) { }
    
            /// <summary>
            /// Initializes a new instance of the System.ComponentModel.DefaultValueAttribute
            /// class using a single-precision floating point number.
            /// </summary>
            /// <param name="value">
            /// A single-precision floating point number that is the default value.
            /// </param>
            public DefaultValueAttribute(float value) : base(value) { }
    
            /// <summary>
            /// Initializes a new instance of the System.ComponentModel.DefaultValueAttribute
            /// class using a double-precision floating point number.
            /// </summary>
            /// <param name="value">
            /// A double-precision floating point number that is the default value.
            /// </param>
            public DefaultValueAttribute(double value) : base(value) { }
    
            /// <summary>
            /// Initializes a new instance of the System.ComponentModel.DefaultValueAttribute
            /// class using a System.Boolean value.
            /// </summary>
            /// <param name="value">
            /// A System.Boolean that is the default value.
            /// </param>
            public DefaultValueAttribute(bool value) : base(value) { }
    
            /// <summary>
            /// Initializes a new instance of the System.ComponentModel.DefaultValueAttribute
            /// class using a System.String.
            /// </summary>
            /// <param name="value">
            /// A System.String that is the default value.
            /// </param>
            public DefaultValueAttribute(string value) : base(value) { }
    
            /// <summary>
            /// Initializes a new instance of the System.ComponentModel.DefaultValueAttribute
            /// class.
            /// </summary>
            /// <param name="value">
            /// An System.Object that represents the default value.
            /// </param>
            public DefaultValueAttribute(object value) : base(value) { }
    
            /// /// <inheritdoc/>
            /// Initializes a new instance of the System.ComponentModel.DefaultValueAttribute
            /// class, converting the specified value to the specified type, and using an invariant
            /// culture as the translation context.
            /// </summary>
            /// <param name="type">
            /// A System.Type that represents the type to convert the value to.
            /// </param>
            /// <param name="value">
            /// A System.String that can be converted to the type using the System.ComponentModel.TypeConverter
            /// for the type and the U.S. English culture.
            /// </param>
            public DefaultValueAttribute(Type type, string value) : base(value) { }
        }
    }
  2. कॉलम एनोटेशन में डिफ़ॉल्ट मान इंजेक्ट करने के लिए एक कन्वेंशन बनाएं
    कॉलम एनोटेशन का उपयोग माइग्रेशन स्क्रिप्ट जनरेटर के माध्यम से कॉलम के बारे में कस्टम मेटाडेटा पास करने के लिए किया जाता है।
    ऐसा करने के लिए एक सम्मेलन का उपयोग करना यह दर्शाता है कि प्रत्येक क्षेत्र के लिए व्यक्तिगत रूप से निर्दिष्ट करने के बजाय कई गुणों के लिए धाराप्रवाह मेटाडेटा को कैसे परिभाषित किया जा सकता है और कैसे सरल बनाया जा सकता है।

    namespace EFExtensions
    {
    
        /// <summary>
        /// Implement SQL Default Values from System.ComponentModel.DefaultValueAttribute
        /// </summary>
        public class DefaultValueConvention : Convention
        {
            /// <summary>
            /// Annotation Key to use for Default Values specified directly as an object
            /// </summary>
            public const string DirectValueAnnotationKey = "DefaultValue";
            /// <summary>
            /// Annotation Key to use for Default Values specified as SQL Strings
            /// </summary>
            public const string SqlValueAnnotationKey = "DefaultSql";
    
            /// <summary>
            /// Implement SQL Default Values from System.ComponentModel.DefaultValueAttribute
            /// </summary>
            public DefaultValueConvention()
            {
                // Implement SO Default Value Attributes first
                this.Properties()
                        .Where(x => x.HasAttribute<EFExtensions.DefaultValueAttribute>())
                        .Configure(c => c.HasColumnAnnotation(
                            c.GetAttribute<EFExtensions.DefaultValueAttribute>().GetDefaultValueAttributeKey(),
                            c.GetAttribute<EFExtensions.DefaultValueAttribute>().GetDefaultValueAttributeValue()
                            ));
    
                // Implement Component Model Default Value Attributes, but only if it is not the SO implementation
                this.Properties()
                        .Where(x => x.HasAttribute<System.ComponentModel.DefaultValueAttribute>())
                        .Where(x => !x.HasAttribute<MiniTuber.DataAnnotations.DefaultValueAttribute>())
                        .Configure(c => c.HasColumnAnnotation(
                            DefaultValueConvention.DirectValueAnnotationKey, 
                            c.GetAttribute<System.ComponentModel.DefaultValueAttribute>().Value
                            ));
            }
        }
    
        /// <summary>
        /// Extension Methods to simplify the logic for building column annotations for Default Value processing
        /// </summary>
        public static partial class PropertyInfoAttributeExtensions
        {
            /// <summary>
            /// Wrapper to simplify the lookup for a specific attribute on a property info.
            /// </summary>
            /// <typeparam name="T">Type of attribute to lookup</typeparam>
            /// <param name="self">PropertyInfo to inspect</param>
            /// <returns>True if an attribute of the requested type exists</returns>
            public static bool HasAttribute<T>(this PropertyInfo self) where T : Attribute
            {
                return self.GetCustomAttributes(false).OfType<T>().Any();
            }
    
            /// <summary>
            /// Wrapper to return the first attribute of the specified type
            /// </summary>
            /// <typeparam name="T">Type of attribute to return</typeparam>
            /// <param name="self">PropertyInfo to inspect</param>
            /// <returns>First attribuite that matches the requested type</returns>
            public static T GetAttribute<T>(this System.Data.Entity.ModelConfiguration.Configuration.ConventionPrimitivePropertyConfiguration self) where T : Attribute
            {
                return self.ClrPropertyInfo.GetCustomAttributes(false).OfType<T>().First();
            }
    
            /// <summary>
            /// Helper to select the correct DefaultValue annotation key based on the attribute values
            /// </summary>
            /// <param name="self"></param>
            /// <returns></returns>
            public static string GetDefaultValueAttributeKey(this EFExtensions.DefaultValueAttribute self)
            {
                return String.IsNullOrWhiteSpace(self.DefaultSql) ? DefaultValueConvention.DirectValueAnnotationKey : DefaultValueConvention.SqlValueAnnotationKey;
            }
    
            /// <summary>
            /// Helper to select the correct attribute property to send as a DefaultValue annotation value
            /// </summary>
            /// <param name="self"></param>
            /// <returns></returns>
            public static object GetDefaultValueAttributeValue(this EFExtensions.DefaultValueAttribute self)
            {
                return String.IsNullOrWhiteSpace(self.DefaultSql) ? self.Value : self.DefaultSql;
            }
        }
    
    }
  3. DbContext में कन्वेंशन को जोड़ें, इसे हासिल करने के
    कई तरीके हैं, मैं अपने मॉडल क्रिटेशन लॉजिक में कन्वेंशन को पहला कस्टम स्टेप घोषित करना पसंद करता हूं, यह आपके DbContext क्लास में होगा।

    protected override void OnModelCreating(DbModelBuilder modelBuilder)
    {
        base.OnModelCreating(modelBuilder);
        // Use our new DefaultValueConvention
        modelBuilder.Conventions.Add<EFExtensions.DefaultValueConvention>();
    
        // My personal favourites ;)
        modelBuilder.Conventions.Remove<PluralizingTableNameConvention>();
        modelBuilder.Conventions.Remove<OneToManyCascadeDeleteConvention>();
    
    }

  4. माइग्रेशनकोड जेनरेटर को ओवरराइड करें अब जब उन एनोटेशन को मॉडल के भीतर कॉलम परिभाषाओं पर लागू किया गया है, तो हमें उन एनोटेशन का उपयोग करने के लिए माइग्रेशन स्क्रिप्ट जनरेटर को संशोधित करना होगा। इसके लिए हम विरासत में प्राप्त System.Data.Entity.Migrations.Design.CSharpMigrationCodeGeneratorकरेंगे क्योंकि हमें केवल बदलाव की न्यूनतम मात्रा को इंजेक्ट करने की आवश्यकता है।
    एक बार जब हमने अपने कस्टम एनोटेशन को संसाधित कर लिया है, तो हमें इसे अंतिम परिभाषा के लिए अनुक्रमित होने से रोकने के लिए इसे कॉलम परिभाषा से हटाने की आवश्यकता है।

    अन्य उपयोग का पता लगाने के लिए आधार वर्ग कोड देखें: http://entityframework.codeplex.com/sourcecontrol/latest#src/EntityFramework/Migrations/Design/CSharpMigrationCodeGodator.cs

    namespace EFExtensions
    {
        /// <summary>
        /// Implement DefaultValue constraint definition in Migration Scripts.
        /// </summary>
        /// <remarks>
        /// Original guide that provided inspiration for this https://romiller.com/2012/11/30/code-first-migrations-customizing-scaffolded-code/
        /// </remarks>
        public class CustomCodeGenerator : System.Data.Entity.Migrations.Design.CSharpMigrationCodeGenerator
        {
            /// <summary>
            /// Inject Default values from the DefaultValue attribute, if the DefaultValueConvention has been enabled.
            /// </summary>
            /// <seealso cref="DefaultValueConvention"/>
            /// <param name="column"></param>
            /// <param name="writer"></param>
            /// <param name="emitName"></param>
            protected override void Generate(ColumnModel column, IndentedTextWriter writer, bool emitName = false)
            {
                var annotations = column.Annotations?.ToList();
                if (annotations != null && annotations.Any())
                {
                    for (int index = 0; index < annotations.Count; index ++)
                    {
                        var annotation = annotations[index];
                        bool handled = true;
    
                        try
                        {
                            switch (annotation.Key)
                            {
                                case DefaultValueConvention.SqlValueAnnotationKey:
                                    if (annotation.Value?.NewValue != null)
                                    {
                                        column.DefaultValueSql = $"{annotation.Value.NewValue}";
                                    }
                                    break;
                                case DefaultValueConvention.DirectValueAnnotationKey:
                                    if (annotation.Value?.NewValue != null)
                                    {
                                        column.DefaultValue = Convert.ChangeType(annotation.Value.NewValue, column.ClrType);
                                    }
                                    break;
                                default:
                                    handled = false;
                                    break;
                            }
                        }
                        catch(Exception ex)
                        {
                            // re-throw with specific debug information
                            throw new ApplicationException($"Failed to Implement Column Annotation for column: {column.Name} with key: {annotation.Key} and new value: {annotation.Value.NewValue}", ex);
                        }
    
                        if(handled)
                        {
                            // remove the annotation, it has been applied
                            column.Annotations.Remove(annotation.Key);
                        }
                    }
                }
                base.Generate(column, writer, emitName);
            }
    
            /// <summary>
            /// Generates class summary comments and default attributes
            /// </summary>
            /// <param name="writer"> Text writer to add the generated code to. </param>
            /// <param name="designer"> A value indicating if this class is being generated for a code-behind file. </param>
            protected override void WriteClassAttributes(IndentedTextWriter writer, bool designer)
            {
                writer.WriteLine("/// <summary>");
                writer.WriteLine("/// Definition of the Migration: {0}", this.ClassName);
                writer.WriteLine("/// </summary>");
                writer.WriteLine("/// <remarks>");
                writer.WriteLine("/// Generated Time: {0}", DateTime.Now);
                writer.WriteLine("/// Generated By: {0}", Environment.UserName);
                writer.WriteLine("/// </remarks>");
                base.WriteClassAttributes(writer, designer);
            }
    
    
        }
    }
  5. CustomCodeGenerator को पंजीकृत करें।
    अंतिम चरण, DbMigration कॉन्फ़िगरेशन फ़ाइल में हमें उपयोग करने के लिए कोड जेनरेटर निर्दिष्ट करने की आवश्यकता है, डिफ़ॉल्ट रूप से अपने माइग्रेशन फ़ोल्डर में configuration.cs की तलाश करें ...

    internal sealed class Configuration : DbMigrationsConfiguration<YourApplication.Database.Context>
    {
        public Configuration()
        {
            // I recommend that auto-migrations be disabled so that we control
            // the migrations explicitly 
            AutomaticMigrationsEnabled = false;
            CodeGenerator = new EFExtensions.CustomCodeGenerator();
        }
    
        protected override void Seed(YourApplication.Database.Context context)
        {
            //   Your custom seed logic here
        }
    }

0

किसी कारण से, मैं खुद को समझाने में असमर्थ था कि स्वीकृत उत्तर मेरे लिए अब काम नहीं करता है।

यह दूसरे ऐप पर काम करता है, जिस पर मैं काम कर रहा हूं वह नहीं है।

तो, एक वैकल्पिक, लेकिन काफी अक्षम है , समाधान SaveChanges () विधि को ओवरले के रूप में दिखाया जाएगा। यह विधि प्रसंग वर्ग पर होनी चाहिए।

    public override int SaveChanges()
    {
        foreach (var entry in ChangeTracker.Entries().Where(entry => entry.Entity.GetType().GetProperty("ColumnName") != null))
        {
            if (entry.State == EntityState.Added)
            {
                entry.Property("ColumnName").CurrentValue = "DefaultValue";
            }
        }
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.