I am trying to work out the best way to handle a Note object that is linked to multiple objects i.e. Contacts, Quotes. These objects can have many Notes, A Quote has many Notes....public class Note
{
public int Id { get; set; }
public string Title...
Background...I have two tables ...Actions... and ...ActionsDetails.......Actions:...CREATE TABLE [dbo].[Actions]
(
[ActionId] [BIGINT] IDENTITY(1,1) NOT NULL,
[DeviceId] [NVARCHAR](125) NOT NULL,
[TenantId] [INT] NOT NULL,
CONSTRAINT [PK_...