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 7405577
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T05:25:28+00:00 2026-05-29T05:25:28+00:00

This is a continuation of an issue I’m still experiencing here . I’m trying

  • 0

This is a continuation of an issue I’m still experiencing here. I’m trying to prevent the OData reflection provider from trying to expose ALL of the CLR classes in my assembly.

Consider the following CLR class:

public class Foo
{
    public Guid FooID { get; set; }
    public string FooName { get; set; }
}

And the following class to expose Foo as an IQueryable collection:

public class MyEntities 
{ 
    public IQueryable<Foo> Foos 
    { 
        get 
        { 
            return DataManager.GetFoos().AsQueryable<Foo>(); 
        } 
    }
} 

And the following DataService class:

public class MyDataService : DataService<MyEntities> 
{ 
    public static void InitializeService(DataServiceConfiguration config) 
    { 
        config.SetEntitySetAccessRule("Foos", EntitySetRights.All); 
        config.DataServiceBehavior.MaxProtocolVersion = DataServiceProtocolVersion.V2; 
    } 
}

This all works hunkey dorey and the DataService can display a collection of Foo. But if change Foo to extend a very simple base object such as:

public class Foo : MyObjectBase
{
    public Guid FooID { get; set; } 
    public string FooName { get; set; }
}

Then (even though I’m only trying to expose 1 collection), the reflection provider grabs ALL objects that extend MyObjectBase, causing loads of errors.

The base class is a simple abstract class that implements a number of interfaces and provides another property such as:

public abstract class MyObjectBase: IDataObject, IDataErrorInfo, INotifyPropertyChanged, IDisposable
{
    public virtual Guid ID { get; set; }
}

Even putting IgnoreProperties on any public properties here doesn’t help. Is there any way to dial down what the reflection provider is doing?

  • 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-29T05:25:29+00:00Added an answer on May 29, 2026 at 5:25 am

    You could set:

    config.SetEntitySetAccessRule("TypeNotAccessible", EntitySetRights.All); 
    

    to

    config.SetEntitySetAccessRule("TypeNotAccessible", EntitySetRights.None);
    

    On any classes you don’t want accessible. I do this using the help of a custom attribute that indicates the rights I want for a particular class. This in combination with looping over all known types (that implement my attribute), makes it possible to do this without explicit code to set each class individually.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is a continuation question from a previous question I have asked I now
This is in continuation with the question posted here: Finding the center of mass
This is a continuation of the post How does one access a method from
This is a continuation of the question here: JBoss - does app have to
Ok - this is in continuation from my earlier question about sending an email
This is in continuation of jqgrid - json looping issue with the difference that
This is a continuation from a previous stackoverflow question. I've renamed some variables so
This is a continuation of one of my previous questions Here are my classes.
This is a continuation from Redirect only HTML files? How can I change my
This is in continuation of two ongoing problems I'm facing: Problems trying to attach

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.