THESE FORUMS ARE NOW FROZEN
Please choose "Forums" from the Main menu of www.entityspaces.net to get to our new forums.

Search

  • Modify templates to write UTF8 BOM

    The current templates use the following when creating the output file: Code: using (StreamWriter sw = System.IO.File.CreateText(fname)) { sw.Write(text); } System.IO.File.CreateText() does not create the StreamWriter so that the BOM is written. As a result, some tools like MS VSS do not correctly auto-detect the encoding and treat the file as ANSI.
    Posted to Feature Request (Forum) by mholman_mrdc on 07-24-2009
  • Re: Using Stored Procedures

    Hi csteinhardt, The developer documenation is based on an 'Employee' example. I believe the context of the code snippet is that LoadByEmployeeType() is a method of the "Custom Class" http://www.developer.entityspaces.net/documentation/CustomClasses/CustomClasses.aspx . Thus, in this context 'this' refers to an instance of the custom class. Since the
    Posted to Hierarchical Data Model (Forum) by mholman_mrdc on 06-17-2009
  • Re: Select DateDiff as?

    Yes. Take a look at the class esUtility. esUtility.ExecuteScalar() should do the trick.
    Posted to Dynamic Query API (Forum) by mholman_mrdc on 06-16-2009
  • Re: Using Stored Procedures

    Yes. Take a look at the esEntity.Load() method in the API Reference help. There is also an example at http://www.developer.entityspaces.net/documentation/DynamicQuery/LoadStoredProcedure.aspx
    Posted to Hierarchical Data Model (Forum) by mholman_mrdc on 06-16-2009
  • Re: Polymorphism in ES

    Try esEntityCollection strategyCol; strategyColl.es.Query.Load()
    Posted to General (Forum) by mholman_mrdc on 06-16-2009
  • Re: Installing ES 2009 in GAC fails.

    You can't use that version to install 2.x or 3.x assemblies. Microsoft no longer installs GacUtil as part of the runtime redistributable. GacUtil is distributed in the SDK. Your options are: 1 - Install SDK on web server 2 - Copy correct version of GacUtil to the webserver 3 - write a deployment project in VS2008 that installs the assembly in the cache
    Posted to General Area (Forum) by mholman_mrdc on 05-04-2009
  • Code not generated for View with LINQ to SQL option enabled

    Version: 2009.1.0209.0 Summary: Code is not generated when a template is recorded for 1 or more views and the 'LINQ to SQL Support' check box is enabled. Steps to Reproduce: Connect to a SQL Server 2005 database with 1 or more view definitions Record a template using 'Generated - Classes Master (C#)' In the 'Tables or Views' dropdown select Views Select
    Posted to Code Generation Issues (Forum) by mholman_mrdc on 04-29-2009
  • ES2009 - Tool tips text incorrect

    Version: 2009.1.0290.0 Description: On the 'Projects' tab, the tool tip for the most recently used projects has the text 'Most Recently Used Settings File' On the 'Settings' tab, the tool tip for the most recently used settings has the text 'Most Recently Used Projects'
    Posted to Defects (Forum) by mholman_mrdc on 04-29-2009
  • ES2009 - Load order of settings and project affects templates that can be selected for recording

    Description: The order in which a project and settings file is loaded affects the templates you can select when recording. If the project is loaded first and then the settings file then the templates are taken from the default location specified in the esSettings.xml file in C:\Documents and Settings\All Users\Application Data\EntitySpaces\ES2009 and
    Posted to Defects (Forum) by mholman_mrdc on 04-29-2009
  • Query construction question

    I have the following code below. When I call PurchaseOption.Load(qry), the sql sent to sql server is: select p.* from PurchaseOption p inner join PurchaseOptionSite s on p.PurchaseOptionId = s.PurchaseOptionId Why are my where criteria missing? What am I doing wrong? I expected this sql to be sent to the server select p.* from PurchaseOption p inner
    Posted to Dynamic Query API (Forum) by mholman_mrdc on 10-25-2008
Page 1 of 2 (14 items) 1 2 Next > | More Search Options
Copyright © 2005 - 2009, EntitySpaces, LLC