User Mark Rogers - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T22:37:40Z http://stackoverflow.com/feeds/user/25847 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1682165/when-should-one-avoid-using-nhibernates-lazy-loading-feature 0 When should one avoid using NHibernate's lazy-loading feature? Mark Rogers 2009-11-05T17:20:09Z 2009-11-26T16:01:46Z <p>Most of what I hear about NHibernate's lazy-loading, is that it's better to use it, than not to use it. It seems like it just makes sense to minimize database access, in an effort to reduce bottlenecks. But few things come without trade-offs, certainly it slightly limits design by forcing you to have <code>virtual</code> properties. But I've also noticed that some developers turn lazy-loading off on certain often-used objects.</p> <p>This makes me wonder if there are some definite situations where data-access performance is hurt by using lazy-loading. </p> <p>So I wonder, when and in what situations should I avoid lazy-loading one of my NHibernate-persisted objects?</p> <p>Is the downside to lazy-loading merely in additional processing time, or can nhibernate lazy-loading also increase the data-access time (for instance, by making additional round-trips to the database)? </p> <p>Thanks!</p> http://stackoverflow.com/questions/1758989/does-a-function-call-in-the-where-clause-of-a-linq-to-nhibernate-query-negat 1 Does a function call in the Where(...) clause of a Linq to Nhibernate query negatively affect performance? Mark Rogers 2009-11-18T20:50:57Z 2009-11-18T20:56:51Z <p>I use linq to nhibernate and the IQueryable.Where function in an application I'm building. And what mystifies me is how do the <code>Expression</code>s I create and pass to the Where function of a INhibernateQueryable affect performance. </p> <p>I'm not really sure what are the gotchas I should avoid in writing these query Expressions, in terms of performance. If I pass in an expression with a funtion call like:</p> <pre><code>CurrentSession.Linq&lt;ENTITY&gt;().Where(x =&gt; x.IsBuyOrder &amp;&amp; CheckVariousProperties(x)) </code></pre> <p>Is it going to retrieve every record <code>where IsBuyOrder = true</code> and then call the function <code>CheckVariousProperties</code> on them as soon as the deferred execution is no longer deferred?</p> <p>How do function calls affect LinqToNhibernate performance? </p> <p>What kind of things should be avoided in a LINQ to Nhibernate query Expression?</p> http://stackoverflow.com/questions/1736288/whats-the-best-way-to-create-a-paging-gridview-style-partial-view-in-asp-net-mvc 1 What's the best way to create a paging gridview-style partial view in Asp.net MVC? Mark Rogers 2009-11-15T01:40:14Z 2009-11-15T01:51:27Z <p>In the current MVC project I'm working on, I need to be able to create something exactly like the GridView from asp.net webforms. I'm actually using FubuMVC, but I can adapt any Asp.net MVC solution to the Fubu framework.</p> <p>I want to create something that has the same kind of functionality as the GridView. To explain further, I mean I want something to list 10-20 items out of a list of 100-200 items, with sorting and paging.</p> <p>Currently, I could create something like this straight-up in MVC on a case-by-case basis, depending on what I was trying to list. Implementing sorting and paging as controller actions, or something similar, but it seems like such a common problem that their must be some type of reusable solution. Only problem is that I can't think what the optimal solution to this problem is.</p> <p>So, what's the best way to create a gridview-style something in Asp.net MVC?</p> <p>Thanks for reading.</p> http://stackoverflow.com/questions/1646341/what-is-the-best-practice-for-naming-and-casing-multi-word-css-classes-and-ids 2 What is the best practice for naming and casing multi-word CSS classes and ids? Mark Rogers 2009-10-29T20:30:13Z 2009-11-12T21:37:00Z <p>I'm trying to find out what is the best practice for naming and casing css classes and ids, especially multiple word names.</p> <p>So for instance, say I have a <code>&lt;div&gt;</code> that I want to name "character skills". It seems like there are 3 choices: "characterskills", "character_skills", or "character-skills".</p> <p>Which one of these is the industry standard for naming css classes and ids?</p> <p>What's the best practice for splitting multiple words in css names?</p> <p>Also is it a best practice to always use all lowercase for css names, because they are case-insensitive?</p> http://stackoverflow.com/questions/274062/name-generator-for-net/1684444#1684444 2 Answer by Mark Rogers for Name Generator for .NET Mark Rogers 2009-11-05T23:41:33Z 2009-11-11T04:52:48Z <p>I created a .net random name generating library (dll) that uses the data from the lists mentioned by HanClinto (ie the <a href="http://www.census.gov/genealogy/names/names%5Ffiles.html" rel="nofollow">US Census names list</a>). It allows you to generate first and last names or only first or last names. Also you can generate specifically male or female names or let it randomly determine the sex of the first name.</p> <p>You can try it out or download it at this <a href="http://www.markdavidrogers.com/oxitesample/Blog/random-name-generator-net-library" rel="nofollow">blog post</a>.</p> http://stackoverflow.com/questions/1603460/in-fluent-nhibernate-how-do-you-combine-automapped-types-with-non-automapped-type 1 In Fluent NHibernate how do you combine automapped types with non-automapped types? Mark Rogers 2009-10-21T20:37:01Z 2009-10-22T09:02:57Z <p>Right now, I'm switching my project over from the classic fluent nhibernate style of manually defining a <code>ClassMap</code> for each domain entity, to having the auto-mapper auto-generate the mappings for me. But I'd like to keep using the classes I've already mapped in the classic style, until I can tweak the automappings to match the old classic mappings. </p> <p>The only problem is that fluent nhibernate crashes when the auto mapper hits a class that's already been mapped in the classic fluent nhibernate style.</p> <p>Here's my <code>AutoPersistenceModel</code> setup code:</p> <pre><code>_autoPersistenceModel = AutoMap.AssemblyOf&lt;DomainEntity&gt;(); _autoPersistenceModel.AddMappingsFromAssembly(typeof (PlayerPersistenceMap).Assembly); _autoPersistenceModel.Alterations(x =&gt; x.Add&lt;AutoMappingAlteration&gt;()) .Setup(s =&gt; { s.FindIdentity = type =&gt; type.Name == "ID"; s.IsBaseType = type =&gt; (type == typeof(DomainEntity)); }) .Conventions .AddFromAssemblyOf&lt;IdentityColumnConvention&gt;() .UseOverridesFromAssemblyOf&lt;PlayerMappingOverride&gt;(); </code></pre> <p>Can anyone help me out here?</p> <p>More Info:</p> <p>I also tried the technique mentioned on the fluent-nhibernate wiki <a href="http://wiki.fluentnhibernate.org/Fluent%5Fconfiguration" rel="nofollow">here</a>. Alas I'm still getting the error: <code>Duplicate class/entity mapping</code>.</p> http://stackoverflow.com/questions/1557023/how-do-you-check-if-a-table-exists-with-nhibernateor-fluent 0 How do you check if a table exists with NHibernate(or Fluent)? Mark Rogers 2009-10-12T21:22:54Z 2009-10-14T20:14:14Z <p>Whats the best, most consistent way to check if a table exists in NHibernate (or with Fluent-Nhibernate)?</p> <p>Is it even possible? I mean it seems like a simple task for such a heavy-duty ORM.</p> <p>Also on a related question, can you check if a set of tables or a whole schema exists with NHibernate?</p> http://stackoverflow.com/questions/1557023/how-do-you-check-if-a-table-exists-with-nhibernateor-fluent/1557867#1557867 1 Answer by Mark Rogers for How do you check if a table exists with NHibernate(or Fluent)? Mark Rogers 2009-10-13T01:50:07Z 2009-10-14T20:14:14Z <p>I looked in the source code for SchemaUpdate. I knew SchemaUpdate could detect a missing table and then generate a create script, rather than an update script. Sure enough, the answer was in there.</p> <p>The <code>GetTableMetadata</code> function in <code>NHibernate.Tool.hbm2ddl.DatabaseMetadata</code> object will return null if a table does not exist in a database.</p> <p>Normally, SchemaUpdate creates a DatabaseMetadata object and passes in into a <code>Configuration</code> object. But it looks like all you need to create a DatabaseMetadata is a DBConnection and Dialect object.</p> <p>SchemaUpdate creates a DatabaseMetadata thusly:</p> <pre><code>connectionHelper.Prepare(); connection = connectionHelper.Connection; meta = new DatabaseMetadata(connection, dialect); </code></pre> <p><code>NHibernate.Cfg.Configuration</code> then calls </p> <pre><code>ITableMetadata tableInfo = databaseMetadata.GetTableMetadata(...); </code></pre> http://stackoverflow.com/questions/366176/how-to-update-database-table-schemas-with-nhibernate-schema-generation 6 How to update database table schemas with NHibernate schema generation? Mark Rogers 2008-12-14T04:28:27Z 2009-10-12T15:58:49Z <p>I'm trying to figure out how to use NHibernate configuration with mapping to update table schemas, rather than dropping and recreating them.</p> <p>Currently I'm using the <code>NHibernate.Tool.hbm2ddl.SchemaExport</code> obj with FluentNHibernate to generate the database schema for a mysql database. While I can't say it's a huge problem, whenever I call <code>SchemaExport.Execute</code> on the database, it's going to drop all the tables and then recreate them. </p> <p>What would be way cooler is if I could just have it update the existing table structures retaining data where possible. But I don't really want to use a commerical product, or a code generator, because I don't like code generation in general, and I don't need this enough that I would consider paying for it. So hopefully any answer would keep these caveats in mind.</p> http://stackoverflow.com/questions/366176/how-to-update-database-table-schemas-with-nhibernate-schema-generation/602822#602822 8 Answer by Mark Rogers for How to update database table schemas with NHibernate schema generation? Mark Rogers 2009-03-02T15:49:51Z 2009-10-12T15:58:49Z <p>The <strong>SchemaUpdate</strong> object provides database schema updating, by apparently generating and executing a series of <strong>SQL UPDATE</strong> statements (as well as constraint statements) when it's <code>void Execute(bool script, bool doUpdate)</code> function is called. The SchemaUpdate class is in the <code>NHibernate.Tool.hbm2ddl</code> namespace, which can be found in the Nhibernate.dll file.</p> <p>SchemaUpdate is mentioned in chapter 15 of the nhibernate 1.0.2 toolset guide, <a href="http://www.hibernate.org/hib%5Fdocs/nhibernate/html/toolsetguide.html" rel="nofollow">here</a> (section 15.1.5).</p> <p>It's usage is described in "The NHibernate FAQ" which has a more complete example of how to use SchemaUpdate <a href="http://blogs.hibernatingrhinos.com/nhibernate/archive/2008/04/28/create-and-update-database-schema.aspx" rel="nofollow">here</a>. On this page the following example test is used, and kind of briefly explains it's use.</p> <pre><code>[Test] public void Update_an_existing_database_schema() { _cfg = new Configuration(); _cfg.Configure(); _cfg.AddAssembly(Assembly.LoadFrom("DataLayer.dll")); var update = new SchemaUpdate(_cfg); update.Execute(true, false); } </code></pre> <p><a href="http://www.markdavidrogers.com/oxitesample/Blog/schemaupdate-for-nhibernate" rel="nofollow">Here's a blog post</a> with a little more detail about how it works.</p> http://stackoverflow.com/questions/449202/how-would-you-represent-a-hashtable-collection-in-a-database-schema 3 How would you represent a hashtable collection in a database schema? Mark Rogers 2009-01-16T01:27:55Z 2009-10-05T19:09:19Z <p>If you were trying to create a domain object in a database schema, and in your code said domain object has a hashtable/list member, like so:</p> <pre><code>public class SpaceQuadrant : PersistentObject { public SpaceQuadrant() { } public virtual Dictionary&lt;SpaceCoordinate, SpaceObject&gt; Space { get; set; } } </code></pre> <p>A Dictionary is just a hashtable/list mapping object keys to value keys, I've come up with multiple ways to do this, creating various join tables or loading techniques, but they all kind of suck in terms of getting that O(1) access time that you get in a hashtable.</p> <p>How would you represent the SpaceQuadrant, SpaceCoordinate, and Space Object in a database schema? A simple schema code description would be nice, ie.</p> <pre><code>table SpaceQuadrant { ID int not null primary key, EntryName varchar(255) not null, SpaceQuadrantJoinTableId int not null foreign key references ...anothertable... } </code></pre> <p>but any thoughts at all would be nice as well, thanks for reading!</p> <p>More Information:</p> <p>Thanks for the great answers, already, I've only skimmed them, and I want to take some time thinking about each before I respond.</p> <p>If you think there is a better way to define these classes, then by all means show me an example, any language your comfortable with is cool</p> http://stackoverflow.com/questions/1520702/how-do-i-configure-nhibernate-or-fluent-nhib-to-add-a-table-name-prefix-to-all 2 How do I configure NHibernate (or Fluent NHib) to add a table name prefix to all table names? Mark Rogers 2009-10-05T15:11:46Z 2009-10-05T16:04:01Z <p>In the current application I'm developing I'm using fluent nhibernate to configure nhibernate for use as an ORM. I want to be able to add a prefix to all the table names used in the application, so that if I use a database that is already servicing another application, there are no naming conflicts between the two applications. </p> <p>So for instance if I wanted to add a prefix of <code>Portal_</code> to each table, the <code>Users</code> table would become <code>Portal_Users</code>.</p> <p>Of course, I know how to configure each table name in each mapping file, but that's not really a good solution for what I'm trying to do. If I ever wanted to change the prefix, I would be forced to change each of the mapping files. I want to be able to add (or change) the prefix to all the table names in a single place in my code or configuration.</p> <p><strong>Can someone tell me how to add a prefix to all table names within an application using nhibernate (or fluent nhibernate)?</strong></p> <p>Thanks, have a good day.</p> http://stackoverflow.com/questions/1482470/using-asp-net-how-do-i-redirect-a-user-and-change-the-post-data-at-the-same-time 1 Using asp.net, how do I redirect a user and change the POST data at the same time? Mark Rogers 2009-09-27T00:21:43Z 2009-09-30T04:00:38Z <p>I have a <strong>single sign-on</strong> solution, meaning that the user will login to one site and be redirected to another. When I redirect the user I want to pass along a key that can be used to verify the user's authentication status. </p> <p>Most of the examples of single sign-on I read show the login site passing the encrypted key has a query string value. I don't think this is a very good solution because it's not very REST-ful or whatever you want to call it. Instead I'd like to pass the encrypted key in the <strong>POST</strong> data. So when the user logins in, they are POSTing to another url.</p> <p>Unfortunately I don't know (yet) how to do this with the <code>Response.Redirect</code> or <code>Server.Transfer</code>. I think <code>Response.Redirect</code> passes the same POST data along when it redirects.</p> <p>Does someone know how to redirect a website user in asp.net, changing the POST data while redirecting?</p> <p>(bonus question: can you change a GET to a POST while redirecting?)</p> http://stackoverflow.com/questions/1478642/what-is-a-simple-and-secure-way-to-transmit-a-login-key-from-one-website-to-anoth 1 What is a simple and secure way to transmit a login key from one website to another while redirecting a user? Mark Rogers 2009-09-25T17:36:41Z 2009-09-26T18:27:53Z <p>I want to create a portal website for log-in, news and user management. And another web site for a web app that the portal redirects to after login.</p> <p>One of my goals is to be able to host the portal and web-app on different servers. The portal would transmit the user's id to the web-app, once the user had successfully logged in and been redirected to the web app. But I don't want people to be able to just bypass the login, or access other users accounts, by transmitting user ids straight to the web app.</p> <p>My first thought is to transmit the user id encrypted as a post variable or query string value. Using some kind of public/private key scenario, and adding a DateTime stamp to key to make it vary everytime.</p> <p>But I haven't done this kind of thing before, so I'm wondering if there aren't better ways to do this. </p> <p>(I could potentially communicate via database, by having the portal store the user id with a key in a database and passing that key to the web app which uses it to get the user id from that database. But that seems crazy.)</p> <p>Can anyone give a way to do this or advice? Or is this a bad idea all-together?</p> <p>Thanks for your time.</p> http://stackoverflow.com/questions/1473632/what-is-the-regular-expression-to-match-the-empty-string-for-a-rewrite-rule 0 What is the regular expression to match the empty string for a rewrite rule? Mark Rogers 2009-09-24T19:15:16Z 2009-09-24T19:22:18Z <p>I need a regular expression for a rewrite rule on iis7, I'm trying to redirect <a href="http://www.website.com" rel="nofollow">http://www.website.com</a> to <a href="http://www.website.com/sample" rel="nofollow">http://www.website.com/sample</a>. But I only want the empty url string (extra points if you can figure it out with and without '/'), and I'm unsure how to create a rewrite rule to match to that.</p> <p>Can someone help me out here?</p> http://stackoverflow.com/questions/1346063/jquery-scrollbar-not-focusing/1408757#1408757 0 Answer by Mark Rogers for jQuery ScrollBar - Not focusing?! Mark Rogers 2009-09-11T02:55:05Z 2009-09-11T03:00:25Z <p>If the example you posted is correct, then you have an extra '+' sign. Between line</p> <p>$('#pane3').jScrollPane();</p> <p>and</p> <p>$('#pane4').jScrollPane({scrollbarOnLeft:true});</p> <p>is an extra '+'. So there it's actually:</p> <pre><code>$('#pane3').jScrollPane(); + $('#pane4').jScrollPane({scrollbarOnLeft:true}); </code></pre> <p>That can't be helping matters, so you should delete that '+', though it may or may not be the cause your problem.</p> <p>Also, you might try wrapping your javascript in a :</p> <pre><code>$(document).ready(function() { ... }); </code></pre> <p>I don't know if it will work, but it's possible your executing the code before the html DOM elements are loaded. I could be wrong, however.</p> <p>Example:</p> <pre><code>$(document).ready(function() { // this initialises the demo scollpanes on the page. $('#pane1').jScrollPane({showArrows:true, scrollbarWidth: 17}); $('#pane2').jScrollPane({showArrows:true, scrollbarWidth: 15, arrowSize: 16}); $('#pane3').jScrollPane(); $('#pane4').jScrollPane({scrollbarOnLeft:true}); }); </code></pre> http://stackoverflow.com/questions/778218/in-domain-driven-design-can-you-use-your-domain-entities-in-your-ui 5 In Domain-Driven Design, can you use your domain entities in your UI? Mark Rogers 2009-04-22T16:57:01Z 2009-09-06T20:52:50Z <p>In many leading DDD projects, especially MVC style, I see the UI using display objects that mirror domain entities, rather than using those domain objects directly. This style is obviously for decoupling and separation of concerns, and I personally prefer this style.</p> <p>But what I'm not sure of, is whether this a strict tenet of DDD, or whether this is more just different developers' interpretation of it. </p> <p>Can you use your domain objects directly in the UI, and still be following the DDD methodology in that act?</p> <p>Or is it a DDD best practice to always use display objects?</p> <p>Note: While I mention MVC, I'm really interested in whether display objects must be used in almost all DDD compatible UI patterns in a DDD project.</p> http://stackoverflow.com/questions/835696/whats-a-good-practice-for-dividing-up-presenters-in-a-mvp-interface-pattern-that 2 What's a good practice for dividing up presenters in a MVP interface pattern that have grown to large? Mark Rogers 2009-05-07T16:25:19Z 2009-09-02T00:42:03Z <p>One problem that I have frequently run into lately is the problem of my presenter classes growing too large. Usually, I can chop up a regular large class without skipping a beat. But the presenters sometimes are a little more difficult to pare down, without making the code harder to follow. </p> <p>Especially when the page starts filling up with CRUD oriented controls. Sometimes I divide out controls, but if they are affected by other controls the coordination logic is complex in it's own right. Sometimes I divide out list or grid data retrieval, but sometimes that can have similar pitfalls.</p> <p>Are there any techniques, or rules of thumb, or common areas that you refactor out of your presenters?</p> <p>Any advice?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1335851/what-does-use-strict-do-in-javascript-and-what-is-the-reasoning-behind-it 11 What does "use strict" do in javascript, and what is the reasoning behind it? Mark Rogers 2009-08-26T16:10:13Z 2009-08-26T16:25:10Z <p>Recently I ran some of my javascript code through Crockford's <a href="http://www.jslint.com/" rel="nofollow">JSLint</a>, and it gave the following error:</p> <blockquote> <p>Problem at line 1 character 1: Missing "use strict" statement.</p> </blockquote> <p>Doing some searching, I realized that some people add <code>"use strict";</code> into their javascript code. And once I added the statement, the error stopped appearing. Unfortunately google does not reveal much (if any) of the history behind this string statement. Certainly it must have something to do with how the javascript is interpreted by the browser, but I have no idea what the effect would be.</p> <p>So what is <code>"use strict";</code> all about, what browser is reading that, what does it imply, and is it still relevant?</p> <p><strong>EDIT</strong>: Do any of the current browsers respond to the "use strict" string or is it for future use?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1329621/jquery-detect-change-in-class-assignment/1329782#1329782 0 Answer by Mark Rogers for jquery detect change in class assignment Mark Rogers 2009-08-25T17:37:12Z 2009-08-25T17:43:35Z <p>You could have an event on keypress or up (for the text area) that checks to see if the maximum number of characters has been reached, and fire off appropriate logic.</p> <pre><code>$(textarea).keypress(function (e) { if(getLetterCount() &gt; 300){ $(postButton).css('disabled', 'true'); else $(postButton).css('disabled', 'false'); } }); </code></pre> http://stackoverflow.com/questions/1291085/using-rhinomocks-how-do-you-mock-or-stub-a-concrete-class-without-an-empty-const 2 Using RhinoMocks, how do you mock or stub a concrete class without an empty constructor? Mark Rogers 2009-08-17T23:50:34Z 2009-08-18T01:06:24Z <p>Mocking a concrete class with Rhino Mocks seems to work pretty easy when you have an empty constructor on a class:</p> <pre><code>public class MyClass{ public MyClass() {} } </code></pre> <p>But if I add a constructor that takes parameters and remove the one that doesn't take parameters:</p> <pre><code>public class MyClass{ public MyClass(MyOtherClass instance) {} } </code></pre> <p>I tend to get an exception:</p> <blockquote> <p>System.MissingMethodException : Can't find a constructor with matching arguments</p> </blockquote> <p>I've tried putting in nulls in my call to Mock or Stub, but it doesn't work.</p> <p>Can I create mocks or stubs of concrete classes with Rhino Mocks, or must I always supply (implicitly or explicitly) an parameter-less constructor?</p> http://stackoverflow.com/questions/1291085/using-rhinomocks-how-do-you-mock-or-stub-a-concrete-class-without-an-empty-const/1291139#1291139 0 Answer by Mark Rogers for Using RhinoMocks, how do you mock or stub a concrete class without an empty constructor? Mark Rogers 2009-08-18T00:09:59Z 2009-08-18T00:09:59Z <p>My mistake is that I was attempting to pass nulls to the <code>CreateMock</code> or <code>GenerateMock</code> call, as soon as I generated a a non-null parameter for the constructor, the calls to create the mock or stub began working.</p> http://stackoverflow.com/questions/1098653/is-there-a-way-to-detect-and-debug-circular-references-when-using-structuremap 0 Is there a way to detect and debug circular references when using StructureMap? Mark Rogers 2009-07-08T15:05:57Z 2009-08-01T03:23:20Z <p>Lately I've been using a larger number of smaller objects, because they are simpler and easier to reuse. Most of the time there isn't any problem injecting these objects into one another using StructureMap (great tool, btw). But occasionally, I f*** up, and I get myself a nice circular reference in the guise of a stack overflow exception(tm).</p> <p>So other than going through all my recent changes since the last test run, does StructureMap provide any mechanism for debugging circular references, or is there a simple tool out there that could be useful in this situation?</p> <p>Thanks everyone!</p> http://stackoverflow.com/questions/1020174/nhibernate-identity-fields/1081854#1081854 6 Answer by Mark Rogers for NHibernate Identity fields Mark Rogers 2009-07-04T09:11:36Z 2009-07-04T18:08:57Z <p>use class="hilo":</p> <pre><code>&lt;generator class="hilo"&gt; </code></pre> <p>example:</p> <pre><code>&lt;hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" namespace="NHibernate__MyClass" assembly="NHibernate__MyClass"&gt; &lt;class name="MyClass" table="MyClass"&gt; &lt;id name="Id" type="int" column="ID"&gt; &lt;generator class="hilo"&gt; &lt;/id&gt; &lt;property name="Name"&gt; &lt;column name="Name" not-null="true" /&gt; &lt;/property&gt; &lt;property name="Value"&gt; &lt;column name="Value" not-null="true" /&gt; &lt;/property&gt; &lt;/class&gt; &lt;/hibernate-mapping&gt; </code></pre> <p>I simplified:</p> <pre><code>&lt;id name="Id"&gt; &lt;column name="ID" sql-type="int" not-null="true"/&gt; &lt;generator class="hilo" /&gt; &lt;/id&gt; </code></pre> <p>to:</p> <pre><code>&lt;id name="Id" type="int" column="ID"&gt; &lt;generator class="hilo"&gt; &lt;/id&gt; </code></pre> <p>You could have a syntax error of some sort that is confusing NHibernate.<br /> If you could provide more detail about the code that is executing before the failure or anything else you might think is important, that could speed the rate at which your problem is resolved.</p> http://stackoverflow.com/questions/1071716/is-it-possible-to-write-a-second-non-static-selecting-priviledged-function-in-a 1 Is it possible to write a second non-static, selecting, priviledged function in a JQuery Plugin? Mark Rogers 2009-07-01T22:46:54Z 2009-07-01T23:06:12Z <p>Almost all of the examples in the jQuery tutorials that I've read, usually use one major public function for their selecting plugin. When I say 'selecting' plugin, I mean one that is not simply a static function extended onto jQuery. </p> <p>For example:</p> <pre><code>(function($) { jQuery.fn.actionList = function(options) { var opts = $.extend({}, $.fn.actionList.defaults, options); return this.each(function(){ alert(this); }); }; $.fn.actionList.defaults = { listHtml: '&lt;div&gt;Set the list html&lt;/div&gt;' }; })(jQuery); </code></pre> <p>but not:</p> <pre><code>jQuery.log = function(message) { if(window.console) { console.debug(message); } else { alert(message); } }; </code></pre> <p>This works fine for most things, but what I would like to do is be able to call a second function on the object returned from the first call. </p> <pre><code>var actionBox = $('actionBox').actionList(options); //Many light-cycles later actionBox.refreshData(data); </code></pre> <p>or maybe even:</p> <pre><code>$('actionBox').actionList(options); // laaateerr $('actionBox').actionList.refreshData(data); </code></pre> <p>I'm guessing one or both of these is not possible or, at least not advisable, but I'm only now getting into the deepest aspects of jQuery and javascript. </p> <p>Could someone explain how to do this, or if it's not possible or advisable, why? and what they would do instead?</p> <p>Thanks for reading!</p> http://stackoverflow.com/questions/1008230/what-is-the-best-practice-casing-style-for-javascript-why 3 What is the best-practice casing style for javascript? Why? Mark Rogers 2009-06-17T16:38:18Z 2009-06-17T17:14:58Z <p>One aspect of javascript that it's hard to find information on is casing practices. By casing practices, I mean what casing style (ie. camel-case, pascal-case, etc) should be used for what elements (Constructors, private functions, public functions).</p> <p>The only rule I've heard was from a Douglas Crockford lecture on YUI theater, stating that constructors should be the only functions that start with an uppercase letter. </p> <p>Beyond that there doesn't seem to be many casing standards that people follow in javascript.</p> <p>Does anyone know any casing best practices for javascript, and why it's reasonable to use them?</p> <p>Also do you follow a casing style with your .js files?</p> http://stackoverflow.com/questions/463177/can-you-change-a-master-pages-contentplaceholders-content-page-asynchronously-i 1 Can you change a master page's ContentPlaceHolder's Content Page Asynchronously in .NET? Mark Rogers 2009-01-20T21:24:26Z 2009-06-10T16:19:47Z <p>From what I've already read this appears to be impossible, but I wanted to see if anyone out there has a secret trick up their sleeve or at least a definitive "no". </p> <p>Supposedly a master page is really just a control for a content page to use, not actually the "master" of a content page. If I wanted to go from one content page, to another content page with the same master page, I would just say</p> <pre><code>Response.Redirect("PageB.aspx"); </code></pre> <p>But this would immediately cause a postback, flickering the page, which is the crappy pre-ajax way of doing things.</p> <p>In this current project, I'm trying to see if I could figure out how to change the current content page of a ContentPlaceHolder in the master page asynchronously, when a button is clicked on the master page.</p> <p>Is this possible, if so how?</p> http://stackoverflow.com/questions/463177/can-you-change-a-master-pages-contentplaceholders-content-page-asynchronously-i/603337#603337 0 Answer by Mark Rogers for Can you change a master page's ContentPlaceHolder's Content Page Asynchronously in .NET? Mark Rogers 2009-03-02T17:56:43Z 2009-06-10T14:22:50Z <p><strong>No</strong>, you cannot because a master page is actually a control rendered on a particular aspx page, rather than actually containing the aspx page as it deceptively appears to be programmatically and in design view.</p> <p><strong>More Info:</strong></p> <p>You could however use a variety of other controls to simulate this effect. The asp:MultiView control is one example, each "page" could be made in a single view and placed in an update panel, thus allowing it to be switched asynchronously. Alternatively you could define each page in a separate user control and put those in an update panel, asynchronously switching the visible property on those controls as needed.</p> <p>There are really a lot of different ways to achieve an effect similar to changing the master page's content placeholder.</p> http://stackoverflow.com/questions/972818/whats-a-good-way-to-refactor-a-growing-number-of-javascript-jquery-functions 3 What's a good way to refactor a growing number of javascript/jquery functions? Mark Rogers 2009-06-09T22:27:19Z 2009-06-10T00:25:42Z <p>I'm working on a project where we are doing a lot of custom javascript and especially jquery, on an mvc style project.</p> <p>The only problem is that I keep adding more and more global functions/variables and they are piling up. I've got a few files but I'm unsure how to split some of the stuff up into separate files. </p> <p>I've thought about composing some of these function and global variables into objects, but the object syntax in javascript seems a little awkward to me (because of the absence of classic classes). Though if I had a good example to follow maybe I could come around.</p> <p>How do you deal with a project where the global javascript functions and variables start piling up like this?</p> http://stackoverflow.com/questions/821276/why-should-i-isolate-my-domain-entities-from-my-presentation-layer 16 Why should I isolate my domain entities from my presentation layer? Mark Rogers 2009-05-04T18:19:02Z 2009-06-02T01:47:14Z <p>One part of domain-driven design that there doesn't seem to be a lot of detail on, is how and why you should isolate your domain model from your interface. I'm trying to convince my colleagues that this is a good practice, but I don't seem to be making much headway...</p> <p>They use domain entities where ever they please in the presentation and interface layers. When I argue to them that they should be using display models or DTOs to insulate the Domain layer from the interface layer, they counter that they don't see the business value in doing something like that, because now you have a UI object to maintain as well as the original domain object. </p> <p>So I'm looking for some concrete reasons I can use to back this up. Specifically:</p> <ol> <li>Why should we not use domain objects in our presentation layer?<br /> (if the answer is the obvious one, 'decoupling', then please explain why this is important in this context)</li> <li>Should we use additional objects or constructs to isolate our domain objects from the interface?</li> </ol> http://stackoverflow.com/questions/824914/how-can-i-refactor-this-jquery-code Comment by Mark Rogers on How can I refactor this jQuery code? Mark Rogers 2009-12-03T16:27:42Z 2009-12-03T16:27:42Z you can drop the second and third var statement and just use ',' at the end. http://stackoverflow.com/questions/1450721/solution-for-jslint-errors/1450768#1450768 Comment by Mark Rogers on solution for jslint errors Mark Rogers 2009-11-30T23:06:19Z 2009-11-30T23:06:19Z &quot;since when did jslint make complete sense?&quot;, I know that was made in jest, but every rule that crockford put in there has some lengthy justification. You could say that many of the rules aren't very important, but the rules, at least, have a solid justification. http://stackoverflow.com/questions/36772/dual-screen-visual-studio-enviornments Comment by Mark Rogers on Dual-Screen Visual studio enviornments Mark Rogers 2009-11-30T05:42:09Z 2009-11-30T05:42:09Z Question needs to be rewritten or removed. http://stackoverflow.com/questions/438704/dynamic-linq-with-direct-user-input-any-dangers/438879#438879 Comment by Mark Rogers on Dynamic LINQ with direct user input, any dangers? Mark Rogers 2009-11-19T01:01:29Z 2009-11-19T01:01:29Z I think this is the most relevant answer here. http://stackoverflow.com/questions/1758989/does-a-function-call-in-the-where-clause-of-a-linq-to-nhibernate-query-negat Comment by Mark Rogers on Does a function call in the Where(...) clause of a Linq to Nhibernate query negatively affect performance? Mark Rogers 2009-11-18T21:02:52Z 2009-11-18T21:02:52Z Well that maybe true, and I may do that, but I wanted to see if someone with a detailed knowledge could explain some of the things to look out for. http://stackoverflow.com/questions/1758989/does-a-function-call-in-the-where-clause-of-a-linq-to-nhibernate-query-negat/1759028#1759028 Comment by Mark Rogers on Does a function call in the Where(...) clause of a Linq to Nhibernate query negatively affect performance? Mark Rogers 2009-11-18T20:58:21Z 2009-11-18T20:58:21Z Thanks, maybe I'll use it. I was wondering though, do know how linq to nhibernate handles function calls in expressions? http://stackoverflow.com/questions/1758989/does-a-function-call-in-the-where-clause-of-a-linq-to-nhibernate-query-negat/1759024#1759024 Comment by Mark Rogers on Does a function call in the Where(...) clause of a Linq to Nhibernate query negatively affect performance? Mark Rogers 2009-11-18T20:57:01Z 2009-11-18T20:57:01Z thanks for the response, are you saying this will perform better? why? http://stackoverflow.com/questions/438659/how-to-implement-search-on-jqgrid/761082#761082 Comment by Mark Rogers on How to implement search on jqgrid? Mark Rogers 2009-11-18T17:22:35Z 2009-11-18T17:22:35Z Should be a comment, not a second answer http://stackoverflow.com/questions/1750671/asp-net-objectdatasource-problem Comment by Mark Rogers on ASP.NET ObjectDataSource problem Mark Rogers 2009-11-17T18:30:42Z 2009-11-17T18:30:42Z Oh nevermind, I guess your saying you can't even get the tags configured. http://stackoverflow.com/questions/1750671/asp-net-objectdatasource-problem Comment by Mark Rogers on ASP.NET ObjectDataSource problem Mark Rogers 2009-11-17T18:19:31Z 2009-11-17T18:19:31Z Could you post the code from the aspx page and/or code-behind? That might be more helpful in spotting errors. http://stackoverflow.com/questions/1736288/whats-the-best-way-to-create-a-paging-gridview-style-partial-view-in-asp-net-mvc/1736306#1736306 Comment by Mark Rogers on What's the best way to create a paging gridview-style partial view in Asp.net MVC? Mark Rogers 2009-11-15T01:55:30Z 2009-11-15T01:55:30Z that's seems pretty cool, I might use that http://stackoverflow.com/questions/1709442/make-divs-height-expand-with-its-content Comment by Mark Rogers on make div's height expand with its content Mark Rogers 2009-11-10T20:19:11Z 2009-11-10T20:19:11Z Don't forget to select an answer... it will help you out as well, because it will improve your accept rate. http://stackoverflow.com/questions/1646341/what-is-the-best-practice-for-naming-and-casing-multi-word-css-classes-and-ids/1646361#1646361 Comment by Mark Rogers on What is the best practice for naming and casing multi-word CSS classes and ids? Mark Rogers 2009-11-09T15:04:00Z 2009-11-09T15:04:00Z I'm sorry I had to unselect your answer, because I did not believe that it is a purely an issue of aesthetics. When people adopt common styles, the code becomes more readable and thus more valuable. http://stackoverflow.com/questions/1609022/how-do-you-get-fluent-nhibernate-to-automap-private-readonly-backing-fields Comment by Mark Rogers on How do you get Fluent NHibernate to automap private readonly backing fields? Mark Rogers 2009-10-23T13:33:32Z 2009-10-23T13:33:32Z I'm sorry, I don't see how you could justify down voting the question. I'll close it, but I did due diligence in looking for a duplicate. http://stackoverflow.com/questions/1603460/in-fluent-nhibernate-how-do-you-combine-automapped-types-with-non-automapped-type/1605922#1605922 Comment by Mark Rogers on In Fluent NHibernate how do you combine automapped types with non-automapped types? Mark Rogers 2009-10-22T16:55:46Z 2009-10-22T16:55:46Z Hey, I went back and double checked, and if I don't do a workaround, then I still get the error &quot;Duplicate class/entity mapping&quot;