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

  • Home
  • SEARCH
  • 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 174335
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T13:30:12+00:00 2026-05-11T13:30:12+00:00

Table: CREATE TABLE Instrument ( Id INT IDENTITY , Name VARCHAR(50) , Tenor VARCHAR(10)

  • 0

Table:

CREATE TABLE Instrument (   Id              INT IDENTITY ,   Name            VARCHAR(50) ,   Tenor           VARCHAR(10) //... 

Model:

    interface ITenor     {         int Length { get; }         string ToString();     }      class DayTenor : ITenor     {         public int Length         {             get { return 1; }         }          public override string ToString()         {             return 'DAY';         }     }      class MonthTenor : ITenor     {         public int Length         {             get { return 30; }         }          public override string ToString()         {             return 'MONTH';         }     }      class TenorFactory     {         ITenor GetTenor(string tenorString)         {             switch (tenorString)             {                 case 'DAY':                     return new DayTenor();                     break;                 case 'MONTH':                     return new MonthTenor();                     break;                 default:                     throw new NotImplementedException(string.Format( 'Tenor {0} is not implemented', tenorString ));             }         }     }      class Instrument     {         public int Id { get; set; }         public string Name { get; set; }         public ITenor Tenor { get; set; }     }      class InstrumentMap : ClassMap<Instrument>     {         public InstrumentMap()         {             WithTable( 'Instrument' );             Id( x => x.Id );             Map( x => x.Name );             Map( x => x.Tenor );         }     } 

This is a great simplification of the problem domain.

The line Map( x => x.Tenor ); will clearly not work, as you cannot implicitly convert the VARCHAR column to an ITenor type. Is there a way I can map to automatically use the Factory to get the ITenor it requires for the specified string in the DB, and use the ToString() from the ITenor class to revert back to the DB?

If not, what refactoring would you recommend to make this feasable? Many thanks

  • 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. 2026-05-11T13:30:13+00:00Added an answer on May 11, 2026 at 1:30 pm

    A possible solution is to keep the string as it is in the database and map it to a TenorString property. Then add another typed property that simply does the transformation between the string and the typed value:

    class Instrument {     public string TenorString { get; set; }     public ITenor Tenor {          get { return GetTenor(this.TenorString); }          set { TenorString = value.ToString() };      } } 

    TenorString is mapped normaly but Tenor property is not mapped at all:

    Map( x => x.TenorString ); 

    Off course the Tenor get property can return a cached value that is reset when TenorString changes to avoid the factory call every time.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 104k
  • Answers 104k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I'm not sure if this is what you are looking… May 11, 2026 at 8:35 pm
  • Editorial Team
    Editorial Team added an answer Ugh. The problem was with permissions. 755 was enough on… May 11, 2026 at 8:35 pm
  • Editorial Team
    Editorial Team added an answer The trigger looks like it is deleting districts whose id… May 11, 2026 at 8:35 pm

Related Questions

Here's my table: CREATE TABLE `alums_alumphoto` ( `id` int(11) NOT NULL auto_increment, `alum_id` int(11)
Consider the following table: create table temp ( name int, a int, b int
If I have a table CREATE TABLE users ( id int(10) unsigned NOT NULL
I have the following table: CREATE TABLE [dbo].[EntityAttributeRelship]( [IdNmb] [int] IDENTITY(1,1) NOT NULL, [EntityIdNmb]

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.