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

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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T11:25:16+00:00 2026-05-15T11:25:16+00:00

I can’t help but feel I am missing something but to this day I

  • 0

I can’t help but feel I am missing something but to this day I cannot find the answer.

I am doing a model-first entity framework and have a few properties set as DateTime. These translate to DateTime in the database – but I would like to use SmallDateTime. In my case, getting down to seconds and milliseconds just isn’t worth the double storage for as many rows as I will have.

Does anyone know a way in the model-first environment to map DateTime to a SmallDateTime DB field? As a last hope, I can generate the DDL, replace all, and update the Model from the database after – but I feel that is obnoxious!

Thanks in advance.

  • 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. Editorial Team
    Editorial Team
    2026-05-15T11:25:17+00:00Added an answer on May 15, 2026 at 11:25 am

    It’s a kind of tricky thing.

    First of all read this article Model first if you have not yet.

    Then create separate class library project with custom IGenerateActivityOutput implementation.

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using Microsoft.Data.Entity.Design.DatabaseGeneration.OutputGenerators;
    using System.Activities;
    
    namespace MyCSDLToSSDL
    {
        public class MyCsdlToSsdl: IGenerateActivityOutput
        {
            private CsdlToSsdl _generator;
            public MyCsdlToSsdl()
            {
                _generator = new CsdlToSsdl();
            }
    
            public T GenerateActivityOutput<T>(OutputGeneratorActivity owningActivity, NativeActivityContext context, IDictionary<string, object> inputs) where T : class
            {
                var str = _generator.GenerateActivityOutput<T>(owningActivity, context, inputs) as string;
    
                return str.Replace("Type=\"datetime\"", "Type=\"smalldatetime\"") as T;
            }
    
        }
    }
    

    The next step is to modify database generation workflow.

    1. Locate TablePerTypeStrategy.xaml in your file system.
    2. Copy this file to the same folder with different name. TablePerTypeStrategy_smalldatetime.xaml for example. Open it with VS.
    3. Change OutputGeneratorType of CsdlToSsdlAndMslActivity to "MyCSDLToSSDL.MyCsdlToSsdl, MyCSDLToSSDL". Double quotes are required.
    4. Change database generation workflow property to "TablePerTypeStrategy_smalldatetime.xaml (VS)".
    5. Try to generate database from model.

    Looks very much like a workaround but it works. 🙂 Hope it helps!

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

Sidebar

Related Questions

Can anyone help me trying to find out why this doesn't work. The brushes
Can somebody help me with this. There is HTML code: <h3> <label> <input type=checkbox
Can anybody help me? What should be the datatype for this type -07:00:00 of
Can somebody tell me how to get mod_rewrite to rename this: our-work-section.php?id=3&title=something to our-work-section/something/3
Can anyone (maybe an XSL-fan?) help me find any advantages with handling presentation of
can anyone help me in trying to check whether JavaScript is enabled in client
can I make my own headers in HTTP request ? e.g. This is normal
Can this be done? It seems like this should be possible. In general, I
Can I run this in a Windows command prompt like I can run it
Can you guys help me understand a concept real quick, I'm having trouble understanding

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.