Skip to main content
deleted 45 characters in body
Source Link
Independent
  • 830
  • 1
  • 7
  • 21

I'm in a little need of names clarification. First a brief description of my position. I prepare as debutant giving a junior developer job descriptions, which also provided another perspective on how important communication is, and to put it beyond doubt.

Simply; I like to understand what he mean with "Context" and I like to give a adopted description of what a POCO is. Now, this is not the exactly problematic words. We haven't even spoken yet. I describe it more as the semantic problem and focus on data and IoC, because there is the place we're going to met (He = GUI, I'm BL).

I give a manual-typed sample just as a reference for naming different part of it. Some terms are local to a Manufacturer or tool and some are used more Generic, which I prefer the latter.

// Poco, Model?
public class Customer
{
    public int CustomerId { get; set; }
    public string Name { get; set; }
}


// A short sign of repository pattern
public class CustomerContext
{

   // Is this a context or even a entity? 
   List<Customer> cust;
   public CustomerContext()
   {
      cust = new List<Customer>();
      cust.Add(new Customer() { CustomerId = 1, Name = "Doe" });
      cust.Add(new Customer() { CustomerId = 2, Name = "John" });
      cust.Add(new Customer() { CustomerId = 3, Name = "Zelda" });
      cust.Add(new Customer() { CustomerId = 4, Name = "Kim" });
   }

   public IQueryable<Customer> Get()
   {
      return cust;
   }
}

**What terms fit best? **

Are 'Customer' a Model? Which it appear to be called in (tooked from MVC)? Does Does we, simply put, mean the same with POCO?

What do I call the sample typed data above? Mocks? Simply "Data"?

What do I call the object CustomerContext? A repository? A Context? Is it an Entity?

Are there other terms that have escaped this scope?

It appears common to write about repositories and generics, even though fell into a scope of a manufacturer (where i.e. 'Entity' commonly means Entity Framework). A strong indication of what terms means what (and when), would be of help.

I'm in a little need of names clarification. First a brief description of my position. I prepare as debutant giving a junior developer job descriptions, which also provided another perspective on how important communication is, and to put it beyond doubt.

Simply; I like to understand what he mean with "Context" and I like to give a adopted description of what a POCO is. Now, this is not the exactly problematic words. We haven't even spoken yet. I describe it more as the semantic problem and focus on data and IoC, because there is the place we're going to met (He = GUI, I'm BL).

I give a manual-typed sample just as a reference for naming different part of it,

// Poco, Model?
public class Customer
{
    public int CustomerId { get; set; }
    public string Name { get; set; }
}


// A short sign of repository pattern
public class CustomerContext
{

   // Is this a context or even a entity? 
   List<Customer> cust;
   public CustomerContext()
   {
      cust = new List<Customer>();
      cust.Add(new Customer() { CustomerId = 1, Name = "Doe" });
      cust.Add(new Customer() { CustomerId = 2, Name = "John" });
      cust.Add(new Customer() { CustomerId = 3, Name = "Zelda" });
      cust.Add(new Customer() { CustomerId = 4, Name = "Kim" });
   }

   public IQueryable<Customer> Get()
   {
      return cust;
   }
}

**What terms fit best? **

Are 'Customer' a Model? Which it appear to be called in MVC? Does we, simply put, mean the same with POCO?

What do I call the sample typed data above? Mocks? Simply "Data"?

What do I call the object CustomerContext? A repository? A Context? Is it an Entity?

Are there other terms that have escaped this scope?

It appears common to write about repositories and generics, even though fell into a scope of a manufacturer (where i.e. 'Entity' commonly means Entity Framework). A strong indication of what terms means what (and when), would be of help.

I'm in a little need of names clarification. First a brief description of my position. I prepare as debutant giving a junior developer job descriptions, which also provided another perspective on how important communication is, and to put it beyond doubt.

Simply; I like to understand what he mean with "Context" and I like to give a adopted description of what a POCO is. Now, this is not the exactly problematic words. We haven't even spoken yet. I describe it more as the semantic problem and focus on data and IoC, because there is the place we're going to met (He = GUI, I'm BL).

I give a manual-typed sample just as a reference for naming different part of it. Some terms are local to a Manufacturer or tool and some are used more Generic, which I prefer the latter.

// Poco, Model?
public class Customer
{
    public int CustomerId { get; set; }
    public string Name { get; set; }
}


// A short sign of repository pattern
public class CustomerContext
{

   // Is this a context or even a entity? 
   List<Customer> cust;
   public CustomerContext()
   {
      cust = new List<Customer>();
      cust.Add(new Customer() { CustomerId = 1, Name = "Doe" });
      cust.Add(new Customer() { CustomerId = 2, Name = "John" });
      cust.Add(new Customer() { CustomerId = 3, Name = "Zelda" });
      cust.Add(new Customer() { CustomerId = 4, Name = "Kim" });
   }

   public IQueryable<Customer> Get()
   {
      return cust;
   }
}

**What terms fit best? **

Are 'Customer' a Model (tooked from MVC)? Does we, simply put, mean the same with POCO?

What do I call the sample typed data above? Mocks? Simply "Data"?

What do I call the object CustomerContext? A repository? A Context? Is it an Entity?

Are there other terms that have escaped this scope?

It appears common to write about repositories and generics, even though fell into a scope of a manufacturer (where i.e. 'Entity' commonly means Entity Framework). A strong indication of what terms means what (and when), would be of help.

deleted 45 characters in body
Source Link
Independent
  • 830
  • 1
  • 7
  • 21

I'm in a little conflict withneed of names. I would be very happy with some Advices to make this more clear clarification. First a brief description of my position.

  I prepare as debutant giving a junior developer job descriptions, which also provided another perspective on how important communication is, and to put it beyond doubt.

This question touches whenSimply; I think of "data" , like in database or stored in a object. This "data" might as well be statically typed data in an object like cust.Add (new Customer {x = x}); which is currently the case.

The person should be able to add dummy data to a number of objects, or at least beginunderstand what he mean with dummy data"Context" and I give this way. Those data should be enoughlike to work on the GUI jobgive a adopted description of what a POCO is. Now, separated from processes inthis is not the business logic I create in meantimeexactly problematic words. We connect decided data objects tohaven't even spoken yet. I describe it whenmore as the semantic problem and focus on data and IoC, because there are time for previewis the place we're going to met (He = GUI, I'm BL).

I give a manual-typed sample just as a reference for clarifynaming different part of it,

// Poco, Model?
public class Customer
{
    public int CustomerId { get; set; }
    public string Name { get; set; }
}


// A short sign of repository pattern
public class CustomerContext
{ 

   // Is this a context or even a entity? 
   List<Customer> cust;
 
   public CustomerContext()
   {
      cust = new List<Customer>();
      cust.Add(new Customer() { CustomerId = 1, Name = "Doe" });
      cust.Add(new Customer() { CustomerId = 2, Name = "John" });
      cust.Add(new Customer() { CustomerId = 3, Name = "Zelda" });
      cust.Add(new Customer() { CustomerId = 4, Name = "Kim" });
   }

   public IQueryable<Customer> Get()
   {
      return cust;
   }
}

What**What terms should befit best used in this case? **

Are 'Customer' a Model? Which it appear to be called in MVC? Does we, simply put, mean the same with POCO? 

What do I call the staticsample typed data (in such case)above? Mocks? Simply "Data"? 

What do I call the object CustomerContext? A repository? A Context? Is it an Entity? I often confuse these terms with what I mean.

Are there terms who are better used or means different things in some cases? Are there other terms that have escaped this questionscope?

It appears common to write about repositories and generics, even though fell into a scope of a manufacturer (where i.e. 'Entity' commonly means Entity Framework). A strong indication of what terms means what (and when), would be of help.

I'm in a little conflict with names. I would be very happy with some Advices to make this more clear. First a brief description of my position.

  I prepare as debutant giving a junior developer job descriptions, which also provided another perspective on how important communication is, and to put it beyond doubt.

This question touches when I think of "data" , like in database or stored in a object. This "data" might as well be statically typed data in an object like cust.Add (new Customer {x = x}); which is currently the case.

The person should be able to add dummy data to a number of objects, or at least begin with dummy data I give this way. Those data should be enough to work on the GUI job description, separated from processes in the business logic I create in meantime. We connect decided data objects to it when there are time for preview.

I give a manual-typed sample just for clarify,

public class Customer
{
    public int CustomerId { get; set; }
    public string Name { get; set; }
}


public class CustomerContext
{
   List<Customer> cust;
 
   public CustomerContext()
   {
      cust = new List<Customer>();
      cust.Add(new Customer() { CustomerId = 1, Name = "Doe" });
      cust.Add(new Customer() { CustomerId = 2, Name = "John" });
      cust.Add(new Customer() { CustomerId = 3, Name = "Zelda" });
      cust.Add(new Customer() { CustomerId = 4, Name = "Kim" });
   }

   public IQueryable<Customer> Get()
   {
      return cust;
   }
}

What terms should be best used in this case?

Are 'Customer' a Model? Which it appear to be called in MVC? Does we, simply put, mean the same with POCO? What do I call the static typed data (in such case)? Mocks? Simply "Data"? What do I call the object CustomerContext? A repository? A Context? Is it an Entity? I often confuse these terms with what I mean.

Are there terms who are better used or means different things in some cases? Are there other terms that have escaped this question?

I'm in a little need of names clarification. First a brief description of my position. I prepare as debutant giving a junior developer job descriptions, which also provided another perspective on how important communication is, and to put it beyond doubt.

Simply; I like to understand what he mean with "Context" and I like to give a adopted description of what a POCO is. Now, this is not the exactly problematic words. We haven't even spoken yet. I describe it more as the semantic problem and focus on data and IoC, because there is the place we're going to met (He = GUI, I'm BL).

I give a manual-typed sample just as a reference for naming different part of it,

// Poco, Model?
public class Customer
{
    public int CustomerId { get; set; }
    public string Name { get; set; }
}


// A short sign of repository pattern
public class CustomerContext
{ 

   // Is this a context or even a entity? 
   List<Customer> cust;
   public CustomerContext()
   {
      cust = new List<Customer>();
      cust.Add(new Customer() { CustomerId = 1, Name = "Doe" });
      cust.Add(new Customer() { CustomerId = 2, Name = "John" });
      cust.Add(new Customer() { CustomerId = 3, Name = "Zelda" });
      cust.Add(new Customer() { CustomerId = 4, Name = "Kim" });
   }

   public IQueryable<Customer> Get()
   {
      return cust;
   }
}

**What terms fit best? **

Are 'Customer' a Model? Which it appear to be called in MVC? Does we, simply put, mean the same with POCO? 

What do I call the sample typed data above? Mocks? Simply "Data"? 

What do I call the object CustomerContext? A repository? A Context? Is it an Entity?

Are there other terms that have escaped this scope?

It appears common to write about repositories and generics, even though fell into a scope of a manufacturer (where i.e. 'Entity' commonly means Entity Framework). A strong indication of what terms means what (and when), would be of help.

added 22 characters in body
Source Link
Independent
  • 830
  • 1
  • 7
  • 21

I'm in a little conflict with names. I would be very happy with some Advices to make this more clear. First a brief description of my position.

I prepare as debutant giving a junior developer job descriptions, which also provided another perspective on how important communication is, and to put it beyond doubt.

This question touches when I think of "data" , like in database or stored in a object. This "data" might as well be statically typed data in an object like cust.Add (new Customer {x = x}); which is currently the case.

The person should be able to add dummy data to a number of objects, or at least begin with dummy data I give this way. Those data should be enough to work on the GUI job description, separated from processes in the business logic I create in meantime. We connect decided data objects to it when there are time for preview.

I give a manual-typed sample just for clarify,

public class Customer
{
    public int CustomerId { get; set; }
    public string Name { get; set; }
}


public class CustomerContext
{
   List<Customer> cust;

   public CustomerContext()
   {
      cust = new List<Customer>();
      cust.Add(new Customer() { CustomerId = 1, Name = "Doe" });
      cust.Add(new Customer() { CustomerId = 2, Name = "John" });
      cust.Add(new Customer() { CustomerId = 3, Name = "Zelda" });
      cust.Add(new Customer() { CustomerId = 4, Name = "Kim" });
   }

   public IQueryable<Customer> Get()
   {
      return cust;
   }
}

What terms should be best used in this case?

Are 'Customer' a Model? Which it appear to be called in MVC? Does we, simply put, mean the same with POCO? What do I call the static typed data (in such case)? Mocks? Simply "Data"? What do I call the object CustomerContext? A repository? A Context? Is it an Entity? I often confuse these terms with what I mean.

Are there terms who are better used or means different things in some cases? Are there other terms that have escaped this question?

I'm in a little conflict with names. I would be very happy with some Advices to make this more clear. First a brief description of my position.

I prepare as debutant giving a junior developer job descriptions, which also provided another perspective on how important communication is, and to put it beyond doubt.

This question touches when I think of "data" , like in database or stored in a object. This "data" might as well be statically typed data in an object like cust.Add (new Customer {x = x}); which is currently the case.

The person should be able to add dummy data to a number of objects, or at least begin with dummy data I give this way. Those data should be enough to work on the GUI job description, separated from processes in the business logic I create in meantime. We connect decided data objects to it when there are time for preview.

I give a manual-typed sample just for clarify,

public class Customer
{
    public int CustomerId { get; set; }
    public string Name { get; set; }
}


public class CustomerContext
{
   List<Customer> cust;

   public CustomerContext()
   {
      cust = new List<Customer>();
      cust.Add(new Customer() { CustomerId = 1, Name = "Doe" });
      cust.Add(new Customer() { CustomerId = 2, Name = "John" });
      cust.Add(new Customer() { CustomerId = 3, Name = "Zelda" });
      cust.Add(new Customer() { CustomerId = 4, Name = "Kim" });
   }

   public IQueryable<Customer> Get()
   {
      return cust;
   }
}

What terms should be best used in this case?

Are 'Customer' a Model? Which it appear to be called in MVC? Does we, simply put, mean the same with POCO? What do I call the static typed data? Simply "Data"? What do I call the object CustomerContext? A repository? A Context? Is it an Entity? I often confuse these terms with what I mean.

Are there terms who are better used or means different things in some cases? Are there other terms that have escaped this question?

I'm in a little conflict with names. I would be very happy with some Advices to make this more clear. First a brief description of my position.

I prepare as debutant giving a junior developer job descriptions, which also provided another perspective on how important communication is, and to put it beyond doubt.

This question touches when I think of "data" , like in database or stored in a object. This "data" might as well be statically typed data in an object like cust.Add (new Customer {x = x}); which is currently the case.

The person should be able to add dummy data to a number of objects, or at least begin with dummy data I give this way. Those data should be enough to work on the GUI job description, separated from processes in the business logic I create in meantime. We connect decided data objects to it when there are time for preview.

I give a manual-typed sample just for clarify,

public class Customer
{
    public int CustomerId { get; set; }
    public string Name { get; set; }
}


public class CustomerContext
{
   List<Customer> cust;

   public CustomerContext()
   {
      cust = new List<Customer>();
      cust.Add(new Customer() { CustomerId = 1, Name = "Doe" });
      cust.Add(new Customer() { CustomerId = 2, Name = "John" });
      cust.Add(new Customer() { CustomerId = 3, Name = "Zelda" });
      cust.Add(new Customer() { CustomerId = 4, Name = "Kim" });
   }

   public IQueryable<Customer> Get()
   {
      return cust;
   }
}

What terms should be best used in this case?

Are 'Customer' a Model? Which it appear to be called in MVC? Does we, simply put, mean the same with POCO? What do I call the static typed data (in such case)? Mocks? Simply "Data"? What do I call the object CustomerContext? A repository? A Context? Is it an Entity? I often confuse these terms with what I mean.

Are there terms who are better used or means different things in some cases? Are there other terms that have escaped this question?

edited tags
Link
Independent
  • 830
  • 1
  • 7
  • 21
Loading
added 45 characters in body
Source Link
Independent
  • 830
  • 1
  • 7
  • 21
Loading
Source Link
Independent
  • 830
  • 1
  • 7
  • 21
Loading