C# Class Acme.Northwind.EFDAL.Entity.ShipperPrimaryKey

Inheritance: nHydrate.EFCore.DataAccess.IPrimaryKey
Exibir arquivo Open project: nHydrate/nHydrate

Protected Properties

Property Type Description
_shipperID int

Public Methods

Method Description
Equals ( object obj ) : bool

Returns a value indicating whether the current object is equal to a specified object.

GetHashCode ( ) : int

Serves as a hash function for this particular type.

ShipperPrimaryKey ( int shipperID ) : System

The constructor for this object which takes the fields that comprise the primary key for the 'Shipper' table.

Method Details

Equals() public method

Returns a value indicating whether the current object is equal to a specified object.
public Equals ( object obj ) : bool
obj object
return bool

GetHashCode() public method

Serves as a hash function for this particular type.
public GetHashCode ( ) : int
return int

ShipperPrimaryKey() public method

The constructor for this object which takes the fields that comprise the primary key for the 'Shipper' table.
public ShipperPrimaryKey ( int shipperID ) : System
shipperID int
return System

Property Details

_shipperID protected_oe property

A primary key field of the Shipper entity
protected int _shipperID
return int