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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T00:37:56+00:00 2026-05-23T00:37:56+00:00

Can somebody please explain the difference between the following 3 possibilities for using the

  • 0

Can somebody please explain the difference between the following 3 possibilities for using the ColumnAttribute:

A: attribute on field

[Column(Name="ParentId")]
private int m_parentid;
public int ParentId { get { return m_parentid; } set { m_parentid = value; } }

B: attribute on property

private int m_parentid;
[Column(Name="ParentId")]
public int ParentId { get { return m_parentid; } set { m_parentid = value; } }    

C: attribute on property with storage set

private int m_parentid;
[Column(Name="ParentId", Storage="m_parentid")]
public int ParentId { get { return m_parentid; } set { m_parentid = value; } }    

I can understand B would be different from A and C in the case of a non-trivial getter / setter (Linq would presumably use the getter/setter in case B but not in case A or C, is that correct?)

But I don’t understand how there can ever be any difference between A and C.

  • 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-23T00:37:57+00:00Added an answer on May 23, 2026 at 12:37 am

    C is useful to allow the engine to understand expression trees, for example a predicate:

    var items = ctx.SomeTable.Where(x => x.ParentId == 21);
    

    With “a” I would expect this to fail, as it doesn’t really know about the property ParentId (only the field m_parentid and the database column). Specifying the “Storage” in “c” allows the db-value to be saved directly to the field rather than using the property, avoiding code that shouldn’t be necessary during materialisation from the db.

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

Sidebar

Related Questions

can somebody please explain what is the difference between the following mechanisms of passing
I'm a little bit confused, can somebody please explain the main difference between those
can somebody please explain what is the difference between freeglut.h and glut.h
Can somebody please explain what is the main difference between visual studio and Qt?
Can somebody please explain (with example) the difference between context-independent and context-dependent overloading?
Can somebody please explain with examples (of code) what is the difference between deadlock
Can somebody please explain me the difference between the terms high memory and high
can somebody please explain difference between those two declarations in the properties of the
Can somebody please explain me clearly by using some nice examples how c++ class
Can somebody please explain why layout is much bigger than button vertically. Im using

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.