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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T00:18:11+00:00 2026-06-14T00:18:11+00:00

I need some help… I have my entity that i have create manually. public

  • 0

I need some help…

I have my entity that i have create manually.

public class Project()
{
 public Project Data {get;set;}
 public string ProjectID { get; set; }
 public string AreaID { get; set; }
 public string Country { get; set; }
}

Where property “Project” is the the table created by SQLmetal.

I have also created my class, with SQLmetal, wish there have there own entity.
Now i trying to parse between them in the constructor like:

public Project()
{
 ProjectID = Data.ProjectID;
 AreaID = Data.AreaID;
 Country = Data.Country;
}

But when I use

projects.Select(p => new Project { Data = p });

the Data property in the constructor is null.

Any idea why? and how will I solve this the better way?

  • 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-06-14T00:18:12+00:00Added an answer on June 14, 2026 at 12:18 am

    Yes, because the initializer

    var x = new Project { Data = p };
    

    is equivalent to

    var x = new Project();
    x.Data = p;
    

    The Data property is set AFTER the constructor.

    You can solve it by creating a constructor that takes Data as a parameter

    public Project(Data data)
    {
        this.Data = Data;
        ProjectID = Data.ProjectID;
        AreaID = Data.AreaID;
        Country = Data.Country;
    }
    

    and call the constructor

    projects.Select(p => new Project(p));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Need some help with DataFormatString in GridView. I have a Double value that needs
I need some help with my jQuery script. I have a page that refreshes
I need some help - I have tried setting setSpecificDate so that the array
Need some help, I have a regular expression that appears to work just fine
Need some help joining these two tables I have two views that looks like
Just need some help with a SQL statement, I have a table that has
I need some help. Basically, I have a large dataset that I have split
I need some help/guidance on WinForms data binding and I can't seem to get
Need some help about with Memcache. I have created a class and want to
Need some help... I have jasperserver 4.1 installed on my ubuntu. It runs via

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.