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

Inheritance: nHydrate.EFCore.DataAccess.IPrimaryKey
Mostrar archivo Open project: nHydrate/nHydrate

Protected Properties

Property Type Description
_supplierID 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.

SupplierPrimaryKey ( int supplierID ) : System

The constructor for this object which takes the fields that comprise the primary key for the 'Supplier' 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

SupplierPrimaryKey() public method

The constructor for this object which takes the fields that comprise the primary key for the 'Supplier' table.
public SupplierPrimaryKey ( int supplierID ) : System
supplierID int
return System

Property Details

_supplierID protected_oe property

A primary key field of the Supplier entity
protected int _supplierID
return int