Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3439024
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T08:15:30+00:00 2026-05-18T08:15:30+00:00

I am looping thru the ObjectStateEntry of EF so I can access enrty.Entity, I

  • 0

I am looping thru the ObjectStateEntry of EF so I can access enrty.Entity, I am doing some static validation on the poco classes and i want to also do business rule validation so i created a library to do that, now i have this line of code that expect a type excample Customer..

 MyEntityValidator<needtypehere> ev = new MyEntityValidator<needtyehere>(new EntityValidator());

so I am having problem passing type where i mentiened ‘needtypehere’. I tried entry.Entity.GetType() but not working . Again this is the signiture of the method

GetErrors(this ObjectStateEntry entry)
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T08:15:31+00:00Added an answer on May 18, 2026 at 8:15 am

    To invoke generics from a Type instance, you would have to use:

    Type closedType = typeof(MyEntityValidator<>)
             .MakeGenericType(entry.Entity.GetType());
    object obj = Activator.CreateInstance(closedType);
    

    which is… awkward – as you then need to do lots of additional work with reflection. Alternatively, you can call into a generic method that does the code:

    public static void InvokeGeneric<T>(...) {
        MyEntityValidator<T> ev = new MyEntityValidator<T>(
            new EntityValidator());
        ... etc; lots more code that uses ev
    }
    ...
    typeof(ContainingType).GetMethod("InvokeGeneric").MakeGenericMethod(
        entry.Entity.GetType()).Invoke(null, args);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm doing some research on how to compare sound files(wave). Basically, I want to
Hey all i am in need of some help looping thru my Dictionary list.
I'm working on a script for looping thru PHP files and renaming function calls
So I have a class like this: def Word end and im looping thru
My application will be looping thru the Virtual Nodes and check their data. I
I have a table that I am looping thru and would like to pull
If I have a ConcurrentDictionary, do I need to lock it when looping thru
I am looping thru all .xls documents in a directory and changing one line
I'm looking for the right logic to loop thru a recordset and fire an
Looping through each id retrieve value of objects in 1 dimentional array and 2

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.