কোনও সি # শ্রেণি তার ইন্টারফেস থেকে বৈশিষ্ট্যগুলি উত্তরাধিকারী হতে পারে?


114

এটি "না" বোঝায়। যা দুর্ভাগ্যজনক।

[AttributeUsage(AttributeTargets.Interface | AttributeTargets.Class,
 AllowMultiple = true, Inherited = true)]
public class CustomDescriptionAttribute : Attribute
{
    public string Description { get; private set; }

    public CustomDescriptionAttribute(string description)
    {
        Description = description;
    }
}

[CustomDescription("IProjectController")]
public interface IProjectController
{
    void Create(string projectName);
}

internal class ProjectController : IProjectController
{
    public void Create(string projectName)
    {
    }
}

[TestFixture]
public class CustomDescriptionAttributeTests
{
    [Test]
    public void ProjectController_ShouldHaveCustomDescriptionAttribute()
    {
        Type type = typeof(ProjectController);
        object[] attributes = type.GetCustomAttributes(
            typeof(CustomDescriptionAttribute),
            true);

        // NUnit.Framework.AssertionException:   Expected: 1   But was:  0
        Assert.AreEqual(1, attributes.Length);
    }
}

একটি শ্রেণি একটি ইন্টারফেস থেকে বৈশিষ্ট্য উত্তরাধিকারী হতে পারে? নাকি আমি এখানে ভুল গাছটি ছাঁটাই করছি?

উত্তর:


73

না। যখনই কোনও ইন্টারফেস প্রয়োগ করা বা ডাইরেক্ট ক্লাসে ওভাররাইডিং সদস্যদের কার্যকর করা হয় তখন আপনাকে বৈশিষ্ট্যগুলি পুনরায় ঘোষণা করতে হবে।

আপনি যদি কেবল কম্পোনেন্টমোডেল (সরাসরি প্রতিচ্ছবি নয়) সম্পর্কে চিন্তা করেন তবে একটি উপায় রয়েছে ([AttributeProvider] বিদ্যমান ধরণের (সদৃশতা এড়ানোর জন্য) বৈশিষ্ট্যগুলি বোঝানোর ) রয়েছে তবে এটি কেবল সম্পত্তি এবং সূচক ব্যবহারের জন্য বৈধ।

উদাহরণ হিসাবে:

using System;
using System.ComponentModel;
class Foo {
    [AttributeProvider(typeof(IListSource))]
    public object Bar { get; set; }

    static void Main() {
        var bar = TypeDescriptor.GetProperties(typeof(Foo))["Bar"];
        foreach (Attribute attrib in bar.Attributes) {
            Console.WriteLine(attrib);
        }
    }
}

আউটপুট:

System.SerializableAttribute
System.ComponentModel.AttributeProviderAttribute
System.ComponentModel.EditorAttribute
System.Runtime.InteropServices.ComVisibleAttribute
System.Runtime.InteropServices.ClassInterfaceAttribute
System.ComponentModel.TypeConverterAttribute
System.ComponentModel.MergablePropertyAttribute

আপনি যদি এই বিষয়ে নিশ্চিত? মেমিইনফো.গেটকাস্টম অ্যাট্রিবিউটস পদ্ধতিটি একটি যুক্তি নেয় যা বলে যে উত্তরাধিকার গাছটি অনুসন্ধান করা উচিত।
রুন গ্রিমস্টাড

3
হুম। আমি কেবল লক্ষ্য করেছি যে প্রশ্নটি কোনও বেস শ্রেণীর নয়, একটি ইন্টারফেস থেকে বৈশিষ্ট্যগুলি উত্তরাধিকার সূত্রে প্রাপ্ত about
রুন গ্রিমস্টাড

ইন্টারফেসগুলিতে বৈশিষ্ট্যগুলি রাখার কি কোনও কারণ আছে?
রায়ান পেনফোল্ড

5
@ রায়ান - নিশ্চিত: ইন্টারফেসটি বর্ণনা করার জন্য। উদাহরণস্বরূপ, পরিষেবা চুক্তি।
মার্ক গ্র্যাভেল

3
মার্ক (এবং @ রুন): হ্যাঁ, ওপি ইন্টারফেস সম্পর্কে ছিল। তবে আপনার উত্তরের প্রথম বাক্যটি বিভ্রান্তিকর হতে পারে: "... বা একটি উত্পন্ন শ্রেণীর সদস্যদের ওভাররাইড করা ..." - এটি অগত্যা সত্য নয়। আপনি আপনার শ্রেণীর বেস বেস থেকে গুণাবলী উত্তরাধিকারী হতে পারেন। আপনি কেবল ইন্টারফেসের মাধ্যমে এটি করতে পারবেন না। আরও দেখুন: stackoverflow.com/questions/12106566/...
chiccodoro

39

আপনি একটি দরকারী এক্সটেনশন পদ্ধতি সংজ্ঞায়িত করতে পারেন ...

Type type = typeof(ProjectController);
var attributes = type.GetCustomAttributes<CustomDescriptionAttribute>( true );

এখানে এক্সটেনশন পদ্ধতিটি রয়েছে:

/// <summary>Searches and returns attributes. The inheritance chain is not used to find the attributes.</summary>
/// <typeparam name="T">The type of attribute to search for.</typeparam>
/// <param name="type">The type which is searched for the attributes.</param>
/// <returns>Returns all attributes.</returns>
public static T[] GetCustomAttributes<T>( this Type type ) where T : Attribute
{
  return GetCustomAttributes( type, typeof( T ), false ).Select( arg => (T)arg ).ToArray();
}

/// <summary>Searches and returns attributes.</summary>
/// <typeparam name="T">The type of attribute to search for.</typeparam>
/// <param name="type">The type which is searched for the attributes.</param>
/// <param name="inherit">Specifies whether to search this member's inheritance chain to find the attributes. Interfaces will be searched, too.</param>
/// <returns>Returns all attributes.</returns>
public static T[] GetCustomAttributes<T>( this Type type, bool inherit ) where T : Attribute
{
  return GetCustomAttributes( type, typeof( T ), inherit ).Select( arg => (T)arg ).ToArray();
}

/// <summary>Private helper for searching attributes.</summary>
/// <param name="type">The type which is searched for the attribute.</param>
/// <param name="attributeType">The type of attribute to search for.</param>
/// <param name="inherit">Specifies whether to search this member's inheritance chain to find the attribute. Interfaces will be searched, too.</param>
/// <returns>An array that contains all the custom attributes, or an array with zero elements if no attributes are defined.</returns>
private static object[] GetCustomAttributes( Type type, Type attributeType, bool inherit )
{
  if( !inherit )
  {
    return type.GetCustomAttributes( attributeType, false );
  }

  var attributeCollection = new Collection<object>();
  var baseType = type;

  do
  {
    baseType.GetCustomAttributes( attributeType, true ).Apply( attributeCollection.Add );
    baseType = baseType.BaseType;
  }
  while( baseType != null );

  foreach( var interfaceType in type.GetInterfaces() )
  {
    GetCustomAttributes( interfaceType, attributeType, true ).Apply( attributeCollection.Add );
  }

  var attributeArray = new object[attributeCollection.Count];
  attributeCollection.CopyTo( attributeArray, 0 );
  return attributeArray;
}

/// <summary>Applies a function to every element of the list.</summary>
private static void Apply<T>( this IEnumerable<T> enumerable, Action<T> function )
{
  foreach( var item in enumerable )
  {
    function.Invoke( item );
  }
}

হালনাগাদ:

সাইমনডি একটি মন্তব্যে প্রস্তাবিত হিসাবে এখানে একটি সংক্ষিপ্ত সংস্করণ রয়েছে:

private static IEnumerable<T> GetCustomAttributesIncludingBaseInterfaces<T>(this Type type)
{
  var attributeType = typeof(T);
  return type.GetCustomAttributes(attributeType, true).
    Union(type.GetInterfaces().
    SelectMany(interfaceType => interfaceType.GetCustomAttributes(attributeType, true))).
    Distinct().Cast<T>();
}

1
এটি কেবল প্রকার, ক্ষেত্র বা সদস্য নয়, প্রকারের স্তরের বৈশিষ্ট্যগুলি পেয়েছে?
মাসলো

22
খুব সুন্দর, আমি ব্যক্তিগতভাবে এখন এটির একটি সংক্ষিপ্ত সংস্করণ ব্যবহার করি: বেসরকারী স্ট্যাটিক আইনিউবারেবল <T> গেটকাস্টমঅ্যাট্রিবিউটিসস ইনক্লুডিংবেসআইন্টারেসফেস <টি> (এই ধরণের প্রকার) {var অ্যাট্রিবিউটটাইপ = টাইপফ (টি); রিটার্ন টাইপ.গেটকাস্টমঅ্যাট্রিবিউটস (অ্যাট্রিবিউটটাইপ, ট্রু) }
সাইমন ডি

1
@ সিমোনডি .: এবং আপনার রিফ্যাক্টরড সমাধানটি দ্রুত।
mynkow

1
@ সিমোনডি এটির একটি মন্তব্যের পরিবর্তে একটি উত্তরের উপযুক্ত।
নিক এন।

সেখানে কোন কারণে প্রতিস্থাপন করতে হয় না Applyনির্মিত সঙ্গে ForEachথেকেMicrosoft.Practices.ObjectBuilder2
জ্যাকব ব্রিউয়ার্স

29

এ সম্পর্কে ব্র্যাড উইলসনের একটি নিবন্ধ: ইন্টারফেসের বৈশিষ্ট্য! = শ্রেণি বৈশিষ্ট্য rib

সংক্ষিপ্তসার হিসাবে: ক্লাসগুলি ইন্টারফেস থেকে উত্তরাধিকারী হয় না, তারা এগুলি প্রয়োগ করে। এর অর্থ এই যে বৈশিষ্ট্যগুলি স্বয়ংক্রিয়ভাবে প্রয়োগের অংশ হয় না।

যদি আপনাকে বৈশিষ্ট্যগুলি উত্তরাধিকারী হতে হয় তবে ইন্টারফেসের পরিবর্তে একটি বিমূর্ত বেস শ্রেণি ব্যবহার করুন।


আপনি যদি একাধিক ইন্টারফেস প্রয়োগ করছেন তবে কী হবে? আপনি কেবলমাত্র সেগুলি ইন্টারফেসগুলি বিমূর্ত ক্লাসে পরিবর্তন করতে পারবেন না কারণ সি # এর একাধিক-উত্তরাধিকার বিভাগে অভাব রয়েছে।
অ্যান্ডি

10

যদিও একটি সি # শ্রেণি তার ইন্টারফেসগুলি থেকে বৈশিষ্ট্যগুলির উত্তরাধিকারী হয় না, তবে এএসপি.নেট এমভিসি 3 তে মডেলগুলি বন্ডিং করার সময় একটি দরকারী বিকল্প রয়েছে।

যদি আপনি দৃশ্যের মডেলটিকে কংক্রিটের ধরণের পরিবর্তে ইন্টারফেস হিসাবে ঘোষণা করেন, তবে ভিউ এবং মডেল বাইন্ডার বৈশিষ্ট্যগুলি প্রয়োগ করবে (উদাহরণস্বরূপ, [Required]বা [DisplayName("Foo")]মডেলটি রেন্ডারিং এবং বৈধকরণের সময় ইন্টারফেস থেকে:

public interface IModel {
    [Required]
    [DisplayName("Foo Bar")]
    string FooBar { get; set; }
} 

public class Model : IModel {
    public string FooBar { get; set; }
}

তারপরে দেখুন:

@* Note use of interface type for the view model *@
@model IModel 

@* This control will receive the attributes from the interface *@
@Html.EditorFor(m => m.FooBar)

4

বাস্তবায়িত ইন্টারফেসে থাকা বৈশিষ্ট্যগুলি থেকে বৈশিষ্ট্যগুলি নিষ্কাশন করতে সন্ধানকারী লোকদের জন্য এটি আরও বেশি। কারণ এই বৈশিষ্ট্যগুলি শ্রেণীর অংশ নয়, এটি আপনাকে এগুলিতে অ্যাক্সেস দেবে। দ্রষ্টব্য, আমার কাছে একটি সাধারণ ধারক শ্রেণি রয়েছে যা আপনাকে প্রপার্টিআইএনফোতে অ্যাক্সেস দেয় as যেমনটি আমার প্রয়োজন। আপনার প্রয়োজন হিসাবে হ্যাক আপ। এটি আমার পক্ষে ভাল কাজ করেছে।

public static class CustomAttributeExtractorExtensions
{
    /// <summary>
    /// Extraction of property attributes as well as attributes on implemented interfaces.
    /// This will walk up recursive to collect any interface attribute as well as their parent interfaces.
    /// </summary>
    /// <typeparam name="TAttributeType"></typeparam>
    /// <param name="typeToReflect"></param>
    /// <returns></returns>
    public static List<PropertyAttributeContainer<TAttributeType>> GetPropertyAttributesFromType<TAttributeType>(this Type typeToReflect)
        where TAttributeType : Attribute
    {
        var list = new List<PropertyAttributeContainer<TAttributeType>>();

        // Loop over the direct property members
        var properties = typeToReflect.GetProperties();

        foreach (var propertyInfo in properties)
        {
            // Get the attributes as well as from the inherited classes (true)
            var attributes = propertyInfo.GetCustomAttributes<TAttributeType>(true).ToList();
            if (!attributes.Any()) continue;

            list.AddRange(attributes.Select(attr => new PropertyAttributeContainer<TAttributeType>(attr, propertyInfo)));
        }

        // Look at the type interface declarations and extract from that type.
        var interfaces = typeToReflect.GetInterfaces();

        foreach (var @interface in interfaces)
        {
            list.AddRange(@interface.GetPropertyAttributesFromType<TAttributeType>());
        }

        return list;

    }

    /// <summary>
    /// Simple container for the Property and Attribute used. Handy if you want refrence to the original property.
    /// </summary>
    /// <typeparam name="TAttributeType"></typeparam>
    public class PropertyAttributeContainer<TAttributeType>
    {
        internal PropertyAttributeContainer(TAttributeType attribute, PropertyInfo property)
        {
            Property = property;
            Attribute = attribute;
        }

        public PropertyInfo Property { get; private set; }

        public TAttributeType Attribute { get; private set; }
    }
}

0

সম্পাদনা: এটি সদস্যদের ইন্টারফেস থেকে উত্তরাধিকারসূচক বৈশিষ্ট্যগুলিকে অন্তর্ভুক্ত করে (বৈশিষ্ট্যগুলি সহ)। টাইপ সংজ্ঞা জন্য উপরে সহজ উত্তর আছে। আমি কেবল এটি পোস্ট করেছি কারণ আমি এটি একটি বিরক্তিকর সীমাবদ্ধতা বলে মনে করেছি এবং একটি সমাধান ভাগ করে নিতে চেয়েছিলাম :)

ইন্টারফেসগুলি একাধিক উত্তরাধিকার এবং টাইপ সিস্টেমে উত্তরাধিকার হিসাবে আচরণ করে। এই ধরণের জিনিসগুলির জন্য কোনও ভাল কারণ নেই। প্রতিবিম্বটি কিছুটা হক্কি। আমি বাজে কথাটি বোঝাতে মন্তব্য যুক্ত করেছি।

(এটি .NET 3.5 কারণ এটি এই মুহূর্তে আমি যে প্রকল্পটি ব্যবহার করছি তা হ'ল এটি ঘটে))

// in later .NETs, you can cache reflection extensions using a static generic class and
// a ConcurrentDictionary. E.g.
//public static class Attributes<T> where T : Attribute
//{
//    private static readonly ConcurrentDictionary<MemberInfo, IReadOnlyCollection<T>> _cache =
//        new ConcurrentDictionary<MemberInfo, IReadOnlyCollection<T>>();
//
//    public static IReadOnlyCollection<T> Get(MemberInfo member)
//    {
//        return _cache.GetOrAdd(member, GetImpl, Enumerable.Empty<T>().ToArray());
//    }
//    //GetImpl as per code below except that recursive steps re-enter via the cache
//}

public static List<T> GetAttributes<T>(this MemberInfo member) where T : Attribute
{
    // determine whether to inherit based on the AttributeUsage
    // you could add a bool parameter if you like but I think it defeats the purpose of the usage
    var usage = typeof(T).GetCustomAttributes(typeof(AttributeUsageAttribute), true)
        .Cast<AttributeUsageAttribute>()
        .FirstOrDefault();
    var inherit = usage != null && usage.Inherited;

    return (
        inherit
            ? GetAttributesRecurse<T>(member)
            : member.GetCustomAttributes(typeof (T), false).Cast<T>()
        )
        .Distinct()  // interfaces mean duplicates are a thing
        // note: attribute equivalence needs to be overridden. The default is not great.
        .ToList();
}

private static IEnumerable<T> GetAttributesRecurse<T>(MemberInfo member) where T : Attribute
{
    // must use Attribute.GetCustomAttribute rather than MemberInfo.GetCustomAttribute as the latter
    // won't retrieve inherited attributes from base *classes*
    foreach (T attribute in Attribute.GetCustomAttributes(member, typeof (T), true))
        yield return attribute;

    // The most reliable target in the interface map is the property get method.
    // If you have set-only properties, you'll need to handle that case. I generally just ignore that
    // case because it doesn't make sense to me.
    PropertyInfo property;
    var target = (property = member as PropertyInfo) != null ? property.GetGetMethod() : member;

    foreach (var @interface in member.DeclaringType.GetInterfaces())
    {
        // The interface map is two aligned arrays; TargetMethods and InterfaceMethods.
        var map = member.DeclaringType.GetInterfaceMap(@interface);
        var memberIndex = Array.IndexOf(map.TargetMethods, target); // see target above
        if (memberIndex < 0) continue;

        // To recurse, we still need to hit the property on the parent interface.
        // Why don't we just use the get method from the start? Because GetCustomAttributes won't work.
        var interfaceMethod = property != null
            // name of property get method is get_<property name>
            // so name of parent property is substring(4) of that - this is reliable IME
            ? @interface.GetProperty(map.InterfaceMethods[memberIndex].Name.Substring(4))
            : (MemberInfo) map.InterfaceMethods[memberIndex];

        // Continuation is the word to google if you don't understand this
        foreach (var attribute in interfaceMethod.GetAttributes<T>())
            yield return attribute;
    }
}

Barebones NUnit পরীক্ষা

[TestFixture]
public class GetAttributesTest
{
    [AttributeUsage(AttributeTargets.All, AllowMultiple = true, Inherited = true)]
    private sealed class A : Attribute
    {
        // default equality for Attributes is apparently semantic
        public override bool Equals(object obj)
        {
            return ReferenceEquals(this, obj);
        }

        public override int GetHashCode()
        {
            return base.GetHashCode();
        }
    }

    [AttributeUsage(AttributeTargets.All, AllowMultiple = true, Inherited = false)]
    private sealed class ANotInherited : Attribute { }

    public interface Top
    {
        [A, ANotInherited]
        void M();

        [A, ANotInherited]
        int P { get; }
    }

    public interface Middle : Top { }

    private abstract class Base
    {
        [A, ANotInherited]
        public abstract void M();

        [A, ANotInherited]
        public abstract int P { get; }
    }

    private class Bottom : Base, Middle
    {
        [A, ANotInherited]
        public override void M()
        {
            throw new NotImplementedException();
        }

        [A, ANotInherited]
        public override int P { get { return 42; } }
    }

    [Test]
    public void GetsAllInheritedAttributesOnMethods()
    {
        var attributes = typeof (Bottom).GetMethod("M").GetAttributes<A>();
        attributes.Should()
            .HaveCount(3, "there are 3 inherited copies in the class heirarchy and A is inherited");
    }

    [Test]
    public void DoesntGetNonInheritedAttributesOnMethods()
    {
        var attributes = typeof (Bottom).GetMethod("M").GetAttributes<ANotInherited>();
        attributes.Should()
            .HaveCount(1, "it shouldn't get copies of the attribute from base classes for a non-inherited attribute");
    }

    [Test]
    public void GetsAllInheritedAttributesOnProperties()
    {
        var attributes = typeof(Bottom).GetProperty("P").GetAttributes<A>();
        attributes.Should()
            .HaveCount(3, "there are 3 inherited copies in the class heirarchy and A is inherited");
    }

    [Test]
    public void DoesntGetNonInheritedAttributesOnProperties()
    {
        var attributes = typeof(Bottom).GetProperty("P").GetAttributes<ANotInherited>();
        attributes.Should()
            .HaveCount(1, "it shouldn't get copies of the attribute from base classes for a non-inherited attribute");
    }
}

0

শ্রেণীর রয়েছে একই বৈশিষ্ট্যগুলির সাথে সংযুক্ত বৈশিষ্ট্য / কাস্টম বৈশিষ্ট্যযুক্ত বৈশিষ্ট্যগুলির সাথে ইন্টারফেস যুক্ত করুন। আমরা ভিজ্যুয়াল স্টুডিও রিফ্যাক্টর বৈশিষ্ট্যটি ব্যবহার করে ক্লাসের ইন্টারফেসটি বের করতে পারি। একটি ইন্টারফেস বাস্তবায়ন একটি আংশিক বর্গ আছে।

এখন শ্রেণীর অবজেক্টের "টাইপ" অবজেক্টটি পান এবং টাইপ অবজেক্টে getProperties ব্যবহার করে সম্পত্তি তথ্য থেকে কাস্টম বৈশিষ্ট্যগুলি পান। এটি শ্রেণীর অবজেক্টে কাস্টম বৈশিষ্ট্য দেয় না কারণ শ্রেণীর বৈশিষ্ট্যগুলির ইন্টারফেস বৈশিষ্ট্যের কাস্টম বৈশিষ্ট্যগুলি সংযুক্ত / উত্তরাধিকারসূত্রে পাওয়া যায় নি।

ক্লাসের টাইপ অবজেক্টের উপরের অংশে এখন getInterface (NameOfImplemetedInterfaceByclass) কল করুন এটি ইন্টারফেসের "প্রকার" অবজেক্টটি সরবরাহ করবে। আমাদের প্রয়োগ করা ইন্টারফেসের নাম জানা উচিত। প্রকারের অবজেক্ট থেকে সম্পত্তির তথ্য পান এবং ইন্টারফেসের সম্পত্তিটিতে যদি কোনও কাস্টম বৈশিষ্ট্য সংযুক্ত থাকে তবে সম্পত্তি সম্পর্কিত তথ্য কাস্টম বৈশিষ্ট্য তালিকা সরবরাহ করবে। প্রয়োগকারী শ্রেণি অবশ্যই ইন্টারফেসের বৈশিষ্ট্যগুলির বাস্তবায়ন সরবরাহ করেছিল। কাস্টম বৈশিষ্ট্য তালিকা পেতে ইন্টারফেসের সম্পত্তি তথ্যের তালিকার মধ্যে শ্রেণীর অবজেক্টের নির্দিষ্ট সম্পত্তির নামটি মিলান।

এটি কাজ করবে।


0

যদিও আমার উত্তর দেরিতে এবং একটি নির্দিষ্ট ক্ষেত্রে নির্দিষ্ট, তবে আমি কিছু ধারণা যুক্ত করতে চাই। অন্যান্য উত্তরে যেমন পরামর্শ দেওয়া হয়েছে, প্রতিবিম্ব বা অন্যান্য পদ্ধতি এটি করবে।

আমার ক্ষেত্রে কোনও সত্তা ফ্রেমওয়ার্ক কোর প্রকল্পের নির্দিষ্ট প্রয়োজনীয়তা (একচেটিয়া চেক বৈশিষ্ট্য) পূরণের জন্য সমস্ত মডেলতে একটি সম্পত্তি (টাইমস্ট্যাম্প) প্রয়োজন ছিল। আমরা হয় সমস্ত শ্রেণীর বৈশিষ্ট্যগুলির উপরে [] যুক্ত করতে পারি (আইমোডেল ইন্টারফেসে যুক্ত করা যা মডেলগুলি কার্যকর করেছিল, কার্যকর হয়নি)। তবে আমি ফ্লুয়েন্ট এপিআইয়ের মাধ্যমে সময় সাশ্রয় করেছি যা এই ক্ষেত্রে সহায়ক। সাবলীল এপিআই-তে, আমি সমস্ত মডেলগুলিতে সুনির্দিষ্ট সম্পত্তি নামের জন্য যাচাই করতে পারি এবং 1 লাইনে ইসকনকুরসিটোকেন () হিসাবে সেট করতে পারি !!

var props = from e in modelBuilder.Model.GetEntityTypes()
            from p in e.GetProperties()
            select p;
props.Where(p => p.PropertyInfo.Name == "ModifiedTime").ToList().ForEach(p => { p.IsConcurrencyToken = true; });

একইভাবে আপনার যদি ক্লাস / মডেলগুলির 100 এর দশকে একই সম্পত্তির নামের সাথে যুক্ত করতে কোনও অ্যাট্রিবিউট দরকার হয় তবে আমরা ইনবিল্ট বা কাস্টম অ্যাট্রিবিউট রিসলভারের জন্য সাবলীল এপি পদ্ধতি ব্যবহার করতে পারি। যদিও EF (মূল এবং EF6 উভয়) অনর্গল এপি পর্দার আড়ালে প্রতিবিম্ব ব্যবহার করতে পারে তবে আমরা প্রচেষ্টা বাঁচাতে পারি :)

আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.