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 8793265
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T23:06:03+00:00 2026-06-13T23:06:03+00:00

I am messing about trying to implement my own basic view engine in F#

  • 0

I am messing about trying to implement my own basic view engine in F# at the moment. Essentially I am inheriting from the VirtualPathProviderViewEngine.

To do this I need to set two view locations so the engine knows where to look for the views. In my F# type I inherit from the above and try to set the two view locations as below…

type FSharpViewEngine() =
inherit VirtualPathProviderViewEngine()

let viewLocations = [| "~/Views/{1}/{0}.fshtml"; "~/Views/Shared/{0}.fshtml" |]

member this.ViewLocationFormats = viewLocations
member this.PartialViewLocationFormats = viewLocations

The code above omits the overrides that are needed for the VirtualPathProviderViewEngine.
I run the project and I get an error message to say

The property ‘ViewLocationFormats’ cannot be null or empty.

Which I am assuming means that I am not setting the two base members correctly above. Am I just assigning the above incorrectly or do you suspect I am doing something else wrong?

As extra info, I have added the ViewEngine at start up time in the Global.fs (global.asax) like so…

ViewEngines.Engines.Add(new FSharpViewEngine())
  • 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-06-13T23:06:03+00:00Added an answer on June 13, 2026 at 11:06 pm

    If you just want to set properties of a base class, then you do not need member or override, but instead you need to use the assignment operator <- in the constructor. To implement the engine, you’ll need to override two abstract methods that it defines, so you’ll need something like this:

    type FSharpViewEngine() =
        inherit VirtualPathProviderViewEngine() 
    
        let viewLocations = [| "~/Views/{1}/{0}.fshtml"; "~/Views/Shared/{0}.fshtml" |]
        do base.ViewLocationFormats <- viewLocations
           base.PartialViewLocationFormats <- viewLocations
    
        override x.CreatePartialView(ctx, path) = failwith "TODO!"
        override x.CreateView(ctx, viewPath, masterPath) = failwith "TODO!"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Im just messing around with Ruby on Rails and HTML. This question isn't about
I'm new to Android development and I'm trying to implement a custom view to
Been trying to get the Jquery plugin Easy Slider 1.7 working. been messing about
I am trying to implement the generalized Hough transform as presented in this paper
Messing about a bit, i have a working Adobe After Effects plugin with a
After messing about with F# there are some really nice features that I think
I've been messing about a bit to try and get my debugger (VS2010) to
I'm messing around learning about changing UI layout when the orientation of the device
I'm just messing around learning about JavaScript and I wanted to change the color
In an effort to learn about synchronization via Java, I'm just messing around with

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.