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

  • Home
  • SEARCH
  • 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 7070985
In Process

The Archive Base Latest Questions

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

I have a model as follows: public class User : System.Web.Security.MembershipUser { public int

  • 0

I have a model as follows:

public class User : System.Web.Security.MembershipUser
{
public int UserId { get; set; }
    public string SomeProperty { get; set; }
}

When my database is generated I want the Entity Framework to ignore MembershipUser and only generate a table named User with the two properties from the User class. I’ve tried the following to no avail.

protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
    modelBuilder.Ignore<System.Web.Security.MembershipUser>();
}
  • 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-28T05:37:58+00:00Added an answer on May 28, 2026 at 5:37 am

    NotMappedAttribute attribute is your friend:

    [MetadataType(typeof(UserMd)]
    public class User : System.Web.Security.MembershipUser
    {
        ////read description bellow code
        //static User()
        //{
        //  var type = typeof(User);
        //  TypeDescriptor.AddProviderTransparent(
        //    new AssociatedMetadataTypeTypeDescriptionProvider(type), type);
        //}        
    
        public int UserId { get; set; }
        public string SomeProperty { get; set; }
    
        internal class UserMd
        {
            [NotMapped]
            public string UserName { get; set; }
        }
    }
    

    I’m not sure if code first processes the metadata automatically by itself, try the above, and if it doesn’t work, attach the metadata manually (i.e. uncomment the commented lines).

    Update
    I do like the above solution better, but if it’s too verbose for you, use the StructuralTypeConfiguration<TStructuralType>.Ignore<TProperty> Method method:

    protected override void OnModelCreating(DbModelBuilder modelBuilder)
    {
        var config = modelBuilder.Entity<User>();
        config.Ignore(u => u.UserName);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Lets say I have some view models set up as follows: public class User
I have implemented a custom Table Model as follows: public class MyTableModel extends AbstractTableModel
Here are my model. public class InfoModel { public NameModel Name { get; set;
If I have a drop down list as follows <div class=editor-label> <%= Html.DropDownListFor(model =>
Lets say I have model inheritance set up in the way defined below. class
I have the following DTO definition:- [DataContract] public class AddProductDTO { [DataMember] public string
I have the following view models: public class Search { public int Id {
I have a model as follows: namespace MvcApplication1.Models { public enum Sex { Male,
I have developed a basic custom JTableModel as follows public class CustomTableModel extends DefaultTableModel
I have a parent-child relationship: @Entity @Table(name = user) public final class User {

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.