एंटिटी फ्रेमवर्क कोड पहले में अद्वितीय बाधा


125

सवाल

क्या धाराप्रवाह सिंटैक्स या एक विशेषता का उपयोग करके किसी संपत्ति पर एक अद्वितीय बाधा को परिभाषित करना संभव है? यदि नहीं, तो वर्कअराउंड क्या हैं?

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

समाधान (मैट के उत्तर पर आधारित)

public class MyContext : DbContext {
    public DbSet<User> Users { get; set; }

    public override int SaveChanges() {
        foreach (var item in ChangeTracker.Entries<IModel>())
            item.Entity.Modified = DateTime.Now;

        return base.SaveChanges();
    }

    public class Initializer : IDatabaseInitializer<MyContext> {
        public void InitializeDatabase(MyContext context) {
            if (context.Database.Exists() && !context.Database.CompatibleWithModel(false))
                context.Database.Delete();

            if (!context.Database.Exists()) {
                context.Database.Create();
                context.Database.ExecuteSqlCommand("alter table Users add constraint UniqueUserEmail unique (Email)");
            }
        }
    }
}

1
ध्यान रखें कि ऐसा करने से आपका एप्लिकेशन केवल उन डेटाबेस तक सीमित हो जाता है जो उस सटीक सिंटैक्स को स्वीकार करते हैं - इस मामले में SQL सर्वर। यदि आप ओरेकल प्रदाता के साथ अपना ऐप चलाते हैं तो यह विफल हो जाएगा।
डेमियनजी

1
उस स्थिति में मुझे केवल एक नया प्रारंभकर्ता वर्ग बनाने की आवश्यकता होगी, लेकिन यह एक मान्य बिंदु है।
kim3er


हाँ, यह अब EF 6.1 के बाद से समर्थित है ।
इवांड्रो पोमट्टी

जवाबों:


61

जहां तक ​​मैं बता सकता हूं, फिलहाल एंटिटी फ्रेमवर्क के साथ ऐसा करने का कोई तरीका नहीं है। हालांकि, यह केवल अद्वितीय बाधाओं के साथ एक समस्या नहीं है ... आप अनुक्रमित, बाधाओं की जांच करना चाहते हैं, और संभवतः ट्रिगर और अन्य निर्माण भी कर सकते हैं। यहां एक सरल पैटर्न है जिसे आप अपने कोड-पहले सेटअप के साथ उपयोग कर सकते हैं , हालांकि माना जाता है कि यह डेटाबेस अज्ञेयवादी नहीं है:

public class MyRepository : DbContext {
    public DbSet<Whatever> Whatevers { get; set; }

    public class Initializer : IDatabaseInitializer<MyRepository> {
        public void InitializeDatabase(MyRepository context) {
            if (!context.Database.Exists() || !context.Database.ModelMatchesDatabase()) {
                context.Database.DeleteIfExists();
                context.Database.Create();

                context.ObjectContext.ExecuteStoreCommand("CREATE UNIQUE CONSTRAINT...");
                context.ObjectContext.ExecuteStoreCommand("CREATE INDEX...");
                context.ObjectContext.ExecuteStoreCommand("ETC...");
            }
        }
    }
}

एक अन्य विकल्प यह है कि यदि आपका डोमेन मॉडल आपके डेटाबेस में डेटा डालने / अपडेट करने का एकमात्र तरीका है, तो आप स्वयं विशिष्टता आवश्यकता को लागू कर सकते हैं और डेटाबेस को इससे बाहर कर सकते हैं। यह एक अधिक पोर्टेबल समाधान है और आपको अपने कोड में अपने व्यावसायिक नियमों के बारे में स्पष्ट होने के लिए मजबूर करता है, लेकिन आपके डेटाबेस को अमान्य डेटा को बैक-डोर प्राप्त करने के लिए खुला छोड़ देता है।


मुझे पसंद है कि मेरा DB ड्रम की तरह कड़ा हो, लॉजिक को बिजनेस लेयर में दोहराया जाता है। आप जवाब दे रहे हैं कि केवल CTP4 के साथ काम करता है, लेकिन मुझे सही रास्ते पर मिला है, मैंने एक समाधान प्रदान किया है जो मेरे मूल प्रश्न के नीचे CTP5 के साथ संगत है। आपका बहुत बहुत धन्यवाद!
किम 3

23
जब तक आपका ऐप एकल-उपयोगकर्ता नहीं है, मेरा मानना ​​है कि एक अद्वितीय बाधा एक चीज है जिसे आप अकेले कोड के साथ लागू नहीं कर सकते । आप कोड में उल्लंघन की संभावना को नाटकीय रूप से कम कर सकते हैं (कॉल करने से पहले विशिष्टता की जांच करके SaveChanges()), लेकिन अद्वितीयता की जांच और समय के बीच एक और इंसर्ट / अपडेट फिसलने की संभावना अभी भी है SaveChanges()। इसलिए, इस बात पर निर्भर करता है कि ऐप कितना महत्वपूर्ण है और विशिष्टता उल्लंघन की संभावना कितनी है, यह संभवतः डेटाबेस में बाधा जोड़ने के लिए सबसे अच्छा है।
devuxer

1
आपको अपने चेक को अपने SaveChanges के समान लेनदेन का हिस्सा होना चाहिए। अपने डेटाबेस को मान लिया गया है कि आप इस तरह से विशिष्टता को लागू करने में सक्षम होना चाहिए। अब क्या EF आपको लेन-देन के जीवनचक्र को ठीक से प्रबंधित करने की अनुमति देता है इस तरह से एक और सवाल है।
मटमै 3

1
@ Mattmc3 यह आपके ट्रांजैक्शन आइसोलेशन लेवल पर निर्भर करता है। केवल serializable isolation level(या कस्टम टेबल लॉकिंग, ऊग) वास्तव में आपको अपने कोड में विशिष्टता की गारंटी देने की अनुमति देगा। लेकिन अधिकांश लोग serializable isolation levelप्रदर्शन कारणों के कारण उपयोग नहीं करते हैं । MS Sql सर्वर में डिफ़ॉल्ट है read committed। 4 भाग श्रृंखला शुरू होने पर देखें: michaeljswart.com/2010/03/…
नाथन

3
EntityFramework 6.1.0 के पास अब IndexAttribute के लिए समर्थन है जिसे आप मूल रूप से गुणों के ऊपर जोड़ सकते हैं।
sotn

45

EF 6.1 से शुरू करना अब संभव है:

[Index(IsUnique = true)]
public string EmailAddress { get; set; }

यह आपको अद्वितीय बाधा के बजाय एक अद्वितीय सूचकांक मिलेगा, सख्ती से बोल रहा है। अधिकांश व्यावहारिक उद्देश्यों के लिए वे समान हैं


5
@ मूल्य: संबंधित गुणों ( स्रोत ) की विशेषताओं पर बस एक ही सूचकांक नाम का उपयोग करें ।
मिहकेल मुउर

ध्यान दें कि यह एक अद्वितीय गर्भनिरोधक के बजाय एक अद्वितीय सूचकांक बनाता है । जबकि लगभग एक ही वे काफी समान नहीं हैं (जैसा कि मैं समझता हूं कि अद्वितीय अवरोधों को एफके के लक्ष्य के रूप में इस्तेमाल किया जा सकता है)। एक बाधा के लिए आपको SQL निष्पादित करना होगा।
रिचर्ड

(अंतिम टिप्पणी के बाद) अन्य स्रोतों का सुझाव है कि यह सीमा SQL सर्वर के अधिक हाल के संस्करणों में हटा दी गई है ... लेकिन BOL पूरी तरह से सुसंगत नहीं है।
रिचर्ड

@ रीचर्ड: विशेषता-आधारित अद्वितीय बाधाएं भी संभव हैं ( मेरा दूसरा उत्तर देखें ), हालांकि बॉक्स से बाहर नहीं।
मिहकेल मुल

1
@exSnake: SQL Server 2008 के बाद से, अद्वितीय सूचकांक डिफ़ॉल्ट रूप से प्रति कॉलम एक एकल NULL मान का समर्थन करता है। यदि कई NULLs के लिए समर्थन की आवश्यकता होती है, तो एक फ़िल्टर किए गए सूचकांक की आवश्यकता होगी जो एक और प्रश्न देखें ।
मिहकेल मुआर

28

वास्तव में इससे संबंधित नहीं है लेकिन यह कुछ मामलों में मदद कर सकता है।

यदि आप 2 कॉलम कहते हैं, जो आपकी तालिका के लिए एक बाधा के रूप में कार्य करेगा, तो आप एक अद्वितीय समग्र सूचकांक बनाना चाहते हैं, तो संस्करण 4.3 के रूप में आप इसे प्राप्त करने के लिए नए माइग्रेशन तंत्र का उपयोग कर सकते हैं:

मूल रूप से आपको अपनी एक माइग्रेशन स्क्रिप्ट में इस तरह से कॉल डालने की आवश्यकता होती है:

CreateIndex("TableName", new string[2] { "Column1", "Column2" }, true, "IX_UniqueColumn1AndColumn2");

ऐसा कुछ:

namespace Sample.Migrations
{
    using System;
    using System.Data.Entity.Migrations;

    public partial class TableName_SetUniqueCompositeIndex : DbMigration
    {
        public override void Up()
        {
            CreateIndex("TableName", new[] { "Column1", "Column2" }, true, "IX_UniqueColumn1AndColumn2");
        }

        public override void Down()
        {
            DropIndex("TableName", new[] { "Column1", "Column2" });
        }
    }
}

यह देखकर अच्छा लगा कि EF को रेल स्टाइल माइग्रेशन मिला है। अब अगर केवल मैं इसे मोनो पर चला सकता था।
किम 3

2
क्या आपको नीचे () प्रक्रिया में एक DropIndex भी नहीं होना चाहिए? DropIndex("TableName", new[] { "Column1", "Column2" });
माइकल बिस्बर्ग

5

जब डेटाबेस बनाया जा रहा है तो मैं SQL निष्पादित करने के लिए एक पूर्ण हैक करता हूं। मैं अपना खुद का डेटाबेसइन्सेन्टलाइज़र बनाता हूं और प्रदान किए गए शुरुआती में से एक से वारिस करता हूं।

public class MyDatabaseInitializer : RecreateDatabaseIfModelChanges<MyDbContext>
{
    protected override void Seed(MyDbContext context)
    {
        base.Seed(context);
        context.Database.Connection.StateChange += new StateChangeEventHandler(Connection_StateChange);
    }

    void Connection_StateChange(object sender, StateChangeEventArgs e)
    {
        DbConnection cnn = sender as DbConnection;

        if (e.CurrentState == ConnectionState.Open)
        {
            // execute SQL to create indexes and such
        }

        cnn.StateChange -= Connection_StateChange;
    }
}

वह एकमात्र स्थान है जिसे मैं अपने एसक्यूएल बयानों में कील कर सकता हूं।

यह CTP4 से है। मुझे नहीं पता कि यह CTP5 में कैसे काम करता है।


धन्यवाद केली! मुझे उस इवेंट हैंडलर की जानकारी नहीं थी। मेरा अंतिम समाधान एसार को इनिशियलाइज़डाटबेस विधि में रखता है।
किम 3

5

बस यह पता लगाने की कोशिश कर रहा है कि क्या ऐसा करने का कोई तरीका था, केवल जिस तरह से मैंने पाया था वह खुद को लागू कर रहा था, मैंने प्रत्येक वर्ग में जोड़े जाने के लिए एक विशेषता बनाई, जहां आप उन क्षेत्रों के नाम की आपूर्ति करते हैं जिन्हें आपको अद्वितीय होने की आवश्यकता है:

    [System.AttributeUsage(System.AttributeTargets.Class, AllowMultiple=false,Inherited=true)]
public class UniqueAttribute:System.Attribute
{
    private string[] _atts;
    public string[] KeyFields
    {
        get
        {
            return _atts;
        }
    }
    public UniqueAttribute(string keyFields)
    {
        this._atts = keyFields.Split(new char[]{','}, StringSplitOptions.RemoveEmptyEntries);
    }
}

फिर अपनी कक्षा में मैं इसे जोड़ूंगा:

[CustomAttributes.Unique("Name")]
public class Item: BasePOCO
{
    public string Name{get;set;}
    [StringLength(250)]
    public string Description { get; set; }
    [Required]
    public String Category { get; set; }
    [Required]
    public string UOM { get; set; }
    [Required]
}

अंत में, मैं अपनी रिपॉजिटरी में एक तरीका जोड़ूंगा, ऐड मेथड में या जब सेविंग चेंजेज इस तरह:

private void ValidateDuplicatedKeys(T entity)
{
    var atts = typeof(T).GetCustomAttributes(typeof(UniqueAttribute), true);
    if (atts == null || atts.Count() < 1)
    {
        return;
    }
    foreach (var att in atts)
    {
        UniqueAttribute uniqueAtt = (UniqueAttribute)att;
        var newkeyValues = from pi in entity.GetType().GetProperties()
                            join k in uniqueAtt.KeyFields on pi.Name equals k
                            select new { KeyField = k, Value = pi.GetValue(entity, null).ToString() };
        foreach (var item in _objectSet)
        {
            var keyValues = from pi in item.GetType().GetProperties()
                            join k in uniqueAtt.KeyFields on pi.Name equals k
                            select new { KeyField = k, Value = pi.GetValue(item, null).ToString() };
            var exists = keyValues.SequenceEqual(newkeyValues);
            if (exists)
            {
                throw new System.Exception("Duplicated Entry found");
            }
        }
    }
}

बहुत अच्छा नहीं है क्योंकि हमें प्रतिबिंब पर भरोसा करने की आवश्यकता है लेकिन यह अब तक का दृष्टिकोण है जो मेरे लिए काम करता है! = D


5

इसके अलावा 6.1 में आप @ mihkelmuur के उत्तर के धाराप्रवाह सिंटैक्स संस्करण का उपयोग कर सकते हैं:

Property(s => s.EmailAddress).HasColumnAnnotation(IndexAnnotation.AnnotationName,
new IndexAnnotation(
    new IndexAttribute("IX_UniqueEmail") { IsUnique = true }));

धाराप्रवाह विधि सही IMO नहीं है, लेकिन कम से कम अब संभव है।

आर्थर विकर्स ब्लॉग http://blog.oneunicorn.com/2014/02/15/ef-6-1-creating-indexes-with-indexattribute/ पर अधिक जानकारी


4

EF5 कोड फर्स्ट माइग्रेशन का उपयोग करके विज़ुअल बेसिक में एक आसान तरीका

पब्लिक क्लास का नमूना

    Public Property SampleId As Integer

    <Required>
    <MinLength(1),MaxLength(200)>

    Public Property Code() As String

एंड क्लास

स्ट्रिंग प्रकार के अनूठे सूचकांक के लिए विशेषता MaxLength बहुत महत्वपूर्ण है

Cmd चलाएं: अपडेट-डेटाबेस -verbose

cmd चलाने के बाद: ऐड-माइग्रेशन 1

उत्पन्न फ़ाइल में

Public Partial Class _1
    Inherits DbMigration

    Public Overrides Sub Up()
        CreateIndex("dbo.Sample", "Code", unique:=True, name:="IX_Sample_Code")
    End Sub

    Public Overrides Sub Down()
        'DropIndex if you need it
    End Sub

End Class

यह वास्तव में एक कस्टम DB initializer की तुलना में अधिक उपयुक्त उत्तर है।
शॉन विल्सन

4

टोबियास शिट्कोव्स्की के उत्तर के समान है लेकिन C # और बाधाओं में कई क्षेत्र रखने की क्षमता है।

इसका उपयोग करने के लिए, आप जिस भी क्षेत्र में अद्वितीय होना चाहते हैं, बस उस पर एक [विशिष्ट] रखें। स्ट्रिंग्स के लिए, आपको कुछ ऐसा करना होगा (नोट करें: MaxLength विशेषता):

[Unique]
[MaxLength(450)] // nvarchar(450) is max allowed to be in a key
public string Name { get; set; }

क्योंकि डिफ़ॉल्ट स्ट्रिंग फ़ील्ड nvarchar (अधिकतम) है और इसे कुंजी में अनुमति नहीं दी जाएगी।

बाधा में कई क्षेत्रों के लिए आप कर सकते हैं:

[Unique(Name="UniqueValuePairConstraint", Position=1)]
public int Value1 { get; set; }
[Unique(Name="UniqueValuePairConstraint", Position=2)]
public int Value2 { get; set; }

सबसे पहले, UniqueAttribute:

/// <summary>
/// The unique attribute. Use to mark a field as unique. The
/// <see cref="DatabaseInitializer"/> looks for this attribute to 
/// create unique constraints in tables.
/// </summary>
internal class UniqueAttribute : Attribute
{
    /// <summary>
    /// Gets or sets the name of the unique constraint. A name will be 
    /// created for unnamed unique constraints. You must name your
    /// constraint if you want multiple fields in the constraint. If your 
    /// constraint has only one field, then this property can be ignored.
    /// </summary>
    public string Name { get; set; }

    /// <summary>
    /// Gets or sets the position of the field in the constraint, lower 
    /// numbers come first. The order is undefined for two fields with 
    /// the same position. The default position is 0.
    /// </summary>
    public int Position { get; set; }
}

फिर, एक प्रकार से डेटाबेस तालिका नाम प्राप्त करने के लिए एक उपयोगी एक्सटेंशन शामिल करें:

public static class Extensions
{
    /// <summary>
    /// Get a table name for a class using a DbContext.
    /// </summary>
    /// <param name="context">
    /// The context.
    /// </param>
    /// <param name="type">
    /// The class to look up the table name for.
    /// </param>
    /// <returns>
    /// The table name; null on failure;
    /// </returns>
    /// <remarks>
    /// <para>
    /// Like:
    /// <code>
    ///   DbContext context = ...;
    ///   string table = context.GetTableName&lt;Foo&gt;();
    /// </code>
    /// </para>
    /// <para>
    /// This code uses ObjectQuery.ToTraceString to generate an SQL 
    /// select statement for an entity, and then extract the table
    /// name from that statement.
    /// </para>
    /// </remarks>
    public static string GetTableName(this DbContext context, Type type)
    {
        return ((IObjectContextAdapter)context)
               .ObjectContext.GetTableName(type);
    }

    /// <summary>
    /// Get a table name for a class using an ObjectContext.
    /// </summary>
    /// <param name="context">
    /// The context.
    /// </param>
    /// <param name="type">
    /// The class to look up the table name for.
    /// </param>
    /// <returns>
    /// The table name; null on failure;
    /// </returns>
    /// <remarks>
    /// <para>
    /// Like:
    /// <code>
    ///   ObjectContext context = ...;
    ///   string table = context.GetTableName&lt;Foo&gt;();
    /// </code>
    /// </para>
    /// <para>
    /// This code uses ObjectQuery.ToTraceString to generate an SQL 
    /// select statement for an entity, and then extract the table
    /// name from that statement.
    /// </para>
    /// </remarks>
    public static string GetTableName(this ObjectContext context, Type type)
    {
        var genericTypes = new[] { type };
        var takesNoParameters = new Type[0];
        var noParams = new object[0];
        object objectSet = context.GetType()
                            .GetMethod("CreateObjectSet", takesNoParameters)
                            .MakeGenericMethod(genericTypes)
                            .Invoke(context, noParams);
        var sql = (string)objectSet.GetType()
                  .GetMethod("ToTraceString", takesNoParameters)
                  .Invoke(objectSet, noParams);
        Match match = 
            Regex.Match(sql, @"FROM\s+(.*)\s+AS", RegexOptions.IgnoreCase);
        return match.Success ? match.Groups[1].Value : null;
    }
}

फिर, डेटाबेस इनिशियलाइज़र:

/// <summary>
///     The database initializer.
/// </summary>
public class DatabaseInitializer : IDatabaseInitializer<PedContext>
{
    /// <summary>
    /// Initialize the database.
    /// </summary>
    /// <param name="context">
    /// The context.
    /// </param>
    public void InitializeDatabase(FooContext context)
    {
        // if the database has changed, recreate it.
        if (context.Database.Exists()
            && !context.Database.CompatibleWithModel(false))
        {
            context.Database.Delete();
        }

        if (!context.Database.Exists())
        {
            context.Database.Create();

            // Look for database tables in the context. Tables are of
            // type DbSet<>.
            foreach (PropertyInfo contextPropertyInfo in 
                     context.GetType().GetProperties())
            {
                var contextPropertyType = contextPropertyInfo.PropertyType;
                if (contextPropertyType.IsGenericType
                    && contextPropertyType.Name.Equals("DbSet`1"))
                {
                    Type tableType = 
                        contextPropertyType.GetGenericArguments()[0];
                    var tableName = context.GetTableName(tableType);
                    foreach (var uc in UniqueConstraints(tableType, tableName))
                    {
                        context.Database.ExecuteSqlCommand(uc);
                    }
                }
            }

            // this is a good place to seed the database
            context.SaveChanges();
        }
    }

    /// <summary>
    /// Get a list of TSQL commands to create unique constraints on the given 
    /// table. Looks through the table for fields with the UniqueAttribute
    /// and uses those and the table name to build the TSQL strings.
    /// </summary>
    /// <param name="tableClass">
    /// The class that expresses the database table.
    /// </param>
    /// <param name="tableName">
    /// The table name in the database.
    /// </param>
    /// <returns>
    /// The list of TSQL statements for altering the table to include unique 
    /// constraints.
    /// </returns>
    private static IEnumerable<string> UniqueConstraints(
        Type tableClass, string tableName)
    {
        // the key is the name of the constraint and the value is a list 
        // of (position,field) pairs kept in order of position - the entry
        // with the lowest position is first.
        var uniqueConstraints = 
            new Dictionary<string, List<Tuple<int, string>>>();
        foreach (PropertyInfo entityPropertyInfo in tableClass.GetProperties())
        {
            var unique = entityPropertyInfo.GetCustomAttributes(true)
                         .OfType<UniqueAttribute>().FirstOrDefault();
            if (unique != null)
            {
                string fieldName = entityPropertyInfo.Name;

                // use the name field in the UniqueAttribute or create a
                // name if none is given
                string constraintName = unique.Name
                                        ?? string.Format(
                                            "constraint_{0}_unique_{1}",
                                            tableName
                                               .Replace("[", string.Empty)
                                               .Replace("]", string.Empty)
                                               .Replace(".", "_"),
                                            fieldName);

                List<Tuple<int, string>> constraintEntry;
                if (!uniqueConstraints.TryGetValue(
                        constraintName, out constraintEntry))
                {
                    uniqueConstraints.Add(
                        constraintName, 
                        new List<Tuple<int, string>> 
                        {
                            new Tuple<int, string>(
                                unique.Position, fieldName) 
                        });
                }
                else
                {
                    // keep the list of fields in order of position
                    for (int i = 0; ; ++i)
                    {
                        if (i == constraintEntry.Count)
                        {
                            constraintEntry.Add(
                                new Tuple<int, string>(
                                    unique.Position, fieldName));
                            break;
                        }

                        if (unique.Position < constraintEntry[i].Item1)
                        {
                            constraintEntry.Insert(
                                i, 
                                new Tuple<int, string>(
                                    unique.Position, fieldName));
                            break;
                        }
                    }
                }
            }
        }

        return
            uniqueConstraints.Select(
                uc =>
                string.Format(
                    "ALTER TABLE {0} ADD CONSTRAINT {1} UNIQUE ({2})",
                    tableName,
                    uc.Key,
                    string.Join(",", uc.Value.Select(v => v.Item2))));
    }
}

2

मैंने प्रतिबिंब द्वारा समस्या हल की (क्षमा करें, दोस्तों, VB.Net ...)

सबसे पहले, एक विशेषता को परिभाषित करें

<AttributeUsage(AttributeTargets.Property, AllowMultiple:=False, Inherited:=True)> _
Public Class UniqueAttribute
    Inherits Attribute

End Class

फिर, जैसे अपना मॉडल बढ़ाएं

<Table("Person")> _
Public Class Person

    <Unique()> _
    Public Property Username() As String

End Class

अंत में, एक कस्टम डेटाबेसइन्सेन्टलाइज़र बनाएं (मेरे संस्करण में, मैं डीबी परिवर्तनों पर डीबी को फिर से बनाता हूं यदि केवल डिबग मोड में है ...)। इस डेटाबेस इंसुलेटर में, यूनीक-एट्रीब्यूट्स के आधार पर सूचकांक स्वचालित रूप से बनाए जाते हैं:

Imports System.Data.Entity
Imports System.Reflection
Imports System.Linq
Imports System.ComponentModel.DataAnnotations

Public Class DatabaseInitializer
    Implements IDatabaseInitializer(Of DBContext)

    Public Sub InitializeDatabase(context As DBContext) Implements IDatabaseInitializer(Of DBContext).InitializeDatabase
        Dim t As Type
        Dim tableName As String
        Dim fieldName As String

        If Debugger.IsAttached AndAlso context.Database.Exists AndAlso Not context.Database.CompatibleWithModel(False) Then
            context.Database.Delete()
        End If

        If Not context.Database.Exists Then
            context.Database.Create()

            For Each pi As PropertyInfo In GetType(DBContext).GetProperties
                If pi.PropertyType.IsGenericType AndAlso _
                    pi.PropertyType.Name.Contains("DbSet") Then

                    t = pi.PropertyType.GetGenericArguments(0)

                    tableName = t.GetCustomAttributes(True).OfType(Of TableAttribute).FirstOrDefault.Name
                    For Each piEntity In t.GetProperties
                        If piEntity.GetCustomAttributes(True).OfType(Of Model.UniqueAttribute).Any Then

                            fieldName = piEntity.Name
                            context.Database.ExecuteSqlCommand("ALTER TABLE " & tableName & " ADD CONSTRAINT con_Unique_" & tableName & "_" & fieldName & " UNIQUE (" & fieldName & ")")

                        End If
                    Next
                End If
            Next

        End If

    End Sub

End Class

शायद यह मदद करता है ...


1

यदि आप अपने DbContext वर्ग में ValidateEntity विधि को ओवरराइड करते हैं, तो आप तर्क को भी वहां रख सकते हैं। यहाँ लाभ यह है कि आपके पास अपने सभी DbSets की पूरी पहुँच होगी। यहाँ एक उदाहरण है:

using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Data.Entity;
using System.Data.Entity.Infrastructure;
using System.Data.Entity.ModelConfiguration.Conventions;
using System.Data.Entity.Validation;
using System.Linq;

namespace MvcEfClient.Models
{
    public class Location
    {
        [Key]
        public int LocationId { get; set; }

        [Required]
        [StringLength(50)]
        public string Name { get; set; }
    }

    public class CommitteeMeetingContext : DbContext
    {
        protected override void OnModelCreating(DbModelBuilder modelBuilder)
        {
            modelBuilder.Conventions.Remove<PluralizingTableNameConvention>();
        }

        protected override DbEntityValidationResult ValidateEntity(DbEntityEntry entityEntry, IDictionary<object, object> items)
        {
            List<DbValidationError> validationErrors = new List<DbValidationError>();

            // Check for duplicate location names

            if (entityEntry.Entity is Location)
            {
                Location location = entityEntry.Entity as Location;

                // Select the existing location

                var existingLocation = (from l in Locations
                                        where l.Name == location.Name && l.LocationId != location.LocationId
                                        select l).FirstOrDefault();

                // If there is an existing location, throw an error

                if (existingLocation != null)
                {
                    validationErrors.Add(new DbValidationError("Name", "There is already a location with the name '" + location.Name + "'"));
                    return new DbEntityValidationResult(entityEntry, validationErrors);
                }
            }

            return base.ValidateEntity(entityEntry, items);
        }

        public DbSet<Location> Locations { get; set; }
    }
}

1

यदि आप EF5 का उपयोग कर रहे हैं और अभी भी यह प्रश्न है, तो नीचे दिए गए समाधान ने इसे मेरे लिए हल कर दिया है।

मैं कोड पहले दृष्टिकोण का उपयोग कर रहा हूं, इसलिए डाल रहा हूं:

this.Sql("CREATE UNIQUE NONCLUSTERED INDEX idx_unique_username ON dbo.Users(Username) WHERE Username IS NOT NULL;");

माइग्रेशन स्क्रिप्ट में काम अच्छा किया। यह NULL मान भी देता है!


1

EF कोड पहले दृष्टिकोण के साथ, एक निम्नलिखित तकनीक का उपयोग करके विशेषता-आधारित अद्वितीय बाधा समर्थन को लागू कर सकता है।

एक मार्कर विशेषता बनाएँ

[AttributeUsage(AttributeTargets.Property)]
public class UniqueAttribute : System.Attribute { }

मार्क गुण आप संस्थाओं पर अद्वितीय होना चाहते हैं, जैसे

[Unique]
public string EmailAddress { get; set; }

एक डेटाबेस इनिशियलाइज़र बनाएं या एक मौजूदा का उपयोग करके अद्वितीय अवरोधों का निर्माण करें

public class DbInitializer : IDatabaseInitializer<DbContext>
{
    public void InitializeDatabase(DbContext db)
    {
        if (db.Database.Exists() && !db.Database.CompatibleWithModel(false))
        {
            db.Database.Delete();
        }

        if (!db.Database.Exists())
        {
            db.Database.Create();
            CreateUniqueIndexes(db);
        }
    }

    private static void CreateUniqueIndexes(DbContext db)
    {
        var props = from p in typeof(AppDbContext).GetProperties()
                    where p.PropertyType.IsGenericType
                       && p.PropertyType.GetGenericTypeDefinition()
                       == typeof(DbSet<>)
                    select p;

        foreach (var prop in props)
        {
            var type = prop.PropertyType.GetGenericArguments()[0];
            var fields = from p in type.GetProperties()
                         where p.GetCustomAttributes(typeof(UniqueAttribute),
                                                     true).Any()
                         select p.Name;

            foreach (var field in fields)
            {
                const string sql = "ALTER TABLE dbo.[{0}] ADD CONSTRAINT"
                                 + " [UK_dbo.{0}_{1}] UNIQUE ([{1}])";
                var command = String.Format(sql, type.Name, field);
                db.Database.ExecuteSqlCommand(command);
            }
        }
    }   
}

स्टार्टअप कोड (जैसे main()या Application_Start()) में इस इनिशलाइज़र का उपयोग करने के लिए अपना डेटाबेस संदर्भ सेट करें

Database.SetInitializer(new DbInitializer());

सम्मिश्रण कुंजियों का समर्थन नहीं करने के सरलीकरण के साथ, समाधान आम के समान है। EF 5.0+ के साथ प्रयोग किया जाना है।


1

धाराप्रवाह Api समाधान:

modelBuilder.Entity<User>(entity =>
{
    entity.HasIndex(e => e.UserId)
          .HasName("IX_User")
          .IsUnique();

    entity.HasAlternateKey(u => u.Email);

    entity.HasIndex(e => e.Email)
          .HasName("IX_Email")
          .IsUnique();
});

0

मुझे आज उस समस्या का सामना करना पड़ा और आखिरकार मैं इसे हल करने में सक्षम हो गया। मुझे नहीं पता कि क्या एक सही दृष्टिकोण है लेकिन कम से कम मैं जा सकता हूं:

public class Person : IValidatableObject
{
    public virtual int ID { get; set; }
    public virtual string Name { get; set; }


    public IEnumerable<ValidationResult> Validate(ValidationContext validationContext)
    {
        var field = new[] { "Name" }; // Must be the same as the property

        PFContext db = new PFContext();

        Person person = validationContext.ObjectInstance as Person;

        var existingPerson = db.Persons.FirstOrDefault(a => a.Name == person.Name);

        if (existingPerson != null)
        {
            yield return new ValidationResult("That name is already in the db", field);
        }
    }
}

0

एक अद्वितीय संपत्ति सत्यापनकर्ता का उपयोग करें।

protected override DbEntityValidationResult ValidateEntity(DbEntityEntry entityEntry, IDictionary<object, object> items) {
   var validation_state = base.ValidateEntity(entityEntry, items);
   if (entityEntry.Entity is User) {
       var entity = (User)entityEntry.Entity;
       var set = Users;

       //check name unique
       if (!(set.Any(any_entity => any_entity.Name == entity.Name))) {} else {
           validation_state.ValidationErrors.Add(new DbValidationError("Name", "The Name field must be unique."));
       }
   }
   return validation_state;
}

ValidateEntityएक ही डेटाबेस लेनदेन के भीतर नहीं कहा जाता है। इसलिए, डेटाबेस में अन्य संस्थाओं के साथ दौड़ की स्थिति हो सकती है। SaveChanges(और इसलिए, ValidateEntity) के आसपास लेनदेन को बाध्य करने के लिए आपको ईएफ को कुछ हद तक हैक करना होगा । DBContextसीधे कनेक्शन नहीं खोल सकते, लेकिन ObjectContextकर सकते हैं।

using (TransactionScope transaction = new TransactionScope(TransactionScopeOption.Required)) {
   ((IObjectContextAdapter)data_context).ObjectContext.Connection.Open();
   data_context.SaveChanges();
   transaction.Complete();
}


0

इस प्रश्न को पढ़ने के बाद, मेरे पास मिक्कल मुर्स , टोबियास शिट्कोव्स्की और महिमान के जवाबों जैसे अद्वितीय कुंजी के रूप में गुणों को नामित करने के लिए एक विशेषता को लागू करने की कोशिश करने की प्रक्रिया में मेरा अपना सवाल था : डेटाबेस कॉलम (CSpace to SSpace) के लिए मैप एंटिटी फ्रेमवर्क गुण

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

नोट: यह कोड EF संस्करण 6.1 (या बाद में) पर निर्भर करता है जो EntityContainerMappingपूर्व संस्करणों में उपलब्ध नहीं है।

Public Sub InitializeDatabase(context As MyDB) Implements IDatabaseInitializer(Of MyDB).InitializeDatabase
    If context.Database.CreateIfNotExists Then
        Dim ws = DirectCast(context, System.Data.Entity.Infrastructure.IObjectContextAdapter).ObjectContext.MetadataWorkspace
        Dim oSpace = ws.GetItemCollection(Core.Metadata.Edm.DataSpace.OSpace)
        Dim entityTypes = oSpace.GetItems(Of EntityType)()
        Dim entityContainer = ws.GetItems(Of EntityContainer)(DataSpace.CSpace).Single()
        Dim entityMapping = ws.GetItems(Of EntityContainerMapping)(DataSpace.CSSpace).Single.EntitySetMappings
        Dim associations = ws.GetItems(Of EntityContainerMapping)(DataSpace.CSSpace).Single.AssociationSetMappings
        For Each setType In entityTypes
           Dim cSpaceEntitySet = entityContainer.EntitySets.SingleOrDefault( _
              Function(t) t.ElementType.Name = setType.Name)
           If cSpaceEntitySet Is Nothing Then Continue For ' Derived entities will be skipped
           Dim sSpaceEntitySet = entityMapping.Single(Function(t) t.EntitySet Is cSpaceEntitySet)
           Dim tableInfo As MappingFragment
           If sSpaceEntitySet.EntityTypeMappings.Count = 1 Then
              tableInfo = sSpaceEntitySet.EntityTypeMappings.Single.Fragments.Single
           Else
              ' Select only the mapping (esp. PropertyMappings) for the base class
              tableInfo = sSpaceEntitySet.EntityTypeMappings.Where(Function(m) m.IsOfEntityTypes.Count _
                 = 1 AndAlso m.IsOfEntityTypes.Single.Name Is setType.Name).Single().Fragments.Single
           End If
           Dim tableName = If(tableInfo.StoreEntitySet.Table, tableInfo.StoreEntitySet.Name)
           Dim schema = tableInfo.StoreEntitySet.Schema
           Dim clrType = Type.GetType(setType.FullName)
           Dim uniqueCols As IList(Of String) = Nothing
           For Each propMap In tableInfo.PropertyMappings.OfType(Of ScalarPropertyMapping)()
              Dim clrProp = clrType.GetProperty(propMap.Property.Name)
              If Attribute.GetCustomAttribute(clrProp, GetType(UniqueAttribute)) IsNot Nothing Then
                 If uniqueCols Is Nothing Then uniqueCols = New List(Of String)
                 uniqueCols.Add(propMap.Column.Name)
              End If
           Next
           For Each navProp In setType.NavigationProperties
              Dim clrProp = clrType.GetProperty(navProp.Name)
              If Attribute.GetCustomAttribute(clrProp, GetType(UniqueAttribute)) IsNot Nothing Then
                 Dim assocMap = associations.SingleOrDefault(Function(a) _
                    a.AssociationSet.ElementType.FullName = navProp.RelationshipType.FullName)
                 Dim sProp = assocMap.Conditions.Single
                 If uniqueCols Is Nothing Then uniqueCols = New List(Of String)
                 uniqueCols.Add(sProp.Column.Name)
              End If
           Next
           If uniqueCols IsNot Nothing Then
              Dim propList = uniqueCols.ToArray()
              context.Database.ExecuteSqlCommand("CREATE UNIQUE INDEX IX_" & tableName & "_" & String.Join("_", propList) _
                 & " ON " & schema & "." & tableName & "(" & String.Join(",", propList) & ")")
           End If
        Next
    End If
End Sub

0

कोड पहली कॉन्फ़िगरेशन का उपयोग करने वालों के लिए आप एक ColumnAnnotation के रूप में IndexAttribute ऑब्जेक्ट का उपयोग कर सकते हैं और अपनी IsUnique संपत्ति को सही पर सेट कर सकते हैं।

उदाहरण में:

var indexAttribute = new IndexAttribute("IX_name", 1) {IsUnique = true};

Property(i => i.Name).HasColumnAnnotation("Index",new IndexAnnotation(indexAttribute));

यह नाम स्तंभ पर IX_name नाम का एक अद्वितीय सूचकांक बनाएगा।


0

देर से जवाब के लिए क्षमा करें, लेकिन मुझे इसे आपके साथ छायांकित करना अच्छा लगा

मैंने इस बारे में कोड प्रोजेक्ट पर पोस्ट किया है

सामान्य तौर पर, यह उन विशेषताओं पर निर्भर करता है जो आप कक्षाओं पर डालते हैं ताकि आपके अद्वितीय सूचकांक उत्पन्न हो सकें

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.