User sirrocco - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T16:07:06Zhttp://stackoverflow.com/feeds/user/5246http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1696182/not-crawling-the-same-content-twice1Not crawling the same content twicesirrocco2009-11-08T12:03:49Z2009-11-08T14:01:29Z
<p>I'm building a small application that will crawl sites where the content is growing (like on stackoverflow) the difference is that the content once created is rarely modified.</p>
<p>Now , in the first pass I crawl all the pages in the site. </p>
<p>But next, the paged content of that site - I don't want to re-crawl all of it , just the latest additions. </p>
<p>So if the site has 500 pages, on the second pass if the site has 501 pages then I would only crawl the first and second pages. Would this be a good way to handle the situation ? </p>
<p>In the end, the crawled content will end up in lucene - creating a custom search engine. </p>
<p>So, I would like to avoid crawling multiple times the same content. Any better ideas ?</p>
<p><strong>EDIT :</strong></p>
<p>Let's say the site has a page : Results that will be accessed like so :</p>
<p>Results?page=1 , Results?page=2 ...etc </p>
<p>I guess that keeping a track of how many pages there were at the last crawl and just crawl the difference would be enough. ( maybe using a hash of each result on the page - if I start running into the same hashes - I should stop)</p>
http://stackoverflow.com/questions/1579682/translating-between-linq-formats/1579756#15797562Answer by sirrocco for Translating between LINQ formatssirrocco2009-10-16T18:50:26Z2009-10-16T18:50:26Z<p>You might also check out <a href="http://www.linqpad.net/" rel="nofollow">LinqPad</a> . It has a small lambda button for the bottom half of the screen, and it translates the linq query to chain methods :</p>
<pre><code>from p in PropertyListings
from rl in p.ResidentialListings
select new {p.YearBuilt,p.ListingUrl}
</code></pre>
<p>got translated to :</p>
<pre><code>PropertyListings
.SelectMany (
p => p.ResidentialListings,
(p, rl) =>
new
{
YearBuilt = p.YearBuilt,
ListingUrl = p.ListingUrl
}
)
</code></pre>
http://stackoverflow.com/questions/1576779/why-can-i-not-compare-two-generic-objects-of-a-certain-implicit-type/1576832#15768322Answer by sirrocco for Why can I not compare two generic objects of a certain implicit type?sirrocco2009-10-16T08:33:10Z2009-10-16T09:48:54Z<p>Apparently the operator == is not implemented in structs. That's why if you put T : class , it will work.</p>
<p><hr /></p>
<p>The link to the file so we can see the version that you say is working would be great :) . Or just edit your post.</p>
http://stackoverflow.com/questions/1571059/large-number-of-logical-reads-on-single-row-delete0Large number of "logical reads" on single row deletesirrocco2009-10-15T08:33:19Z2009-10-16T07:29:55Z
<p>Hi,</p>
<p>When deleting a row by its PrimaryKey from a table, I get about 44472 logical reads. Now the table has 5-6 child tables that link their ForeignKeys to the PK of the table I want to delete from. </p>
<p>I'm not sure what to do to improve the performance of the delete.</p>
<p>Any suggestions ?</p>
<p><strong>Edit :</strong>
I added the queryplan for the delete</p>
<p><a href="http://img384.imageshack.us/img384/6255/deleteexecutionplan.png" rel="nofollow">http://img384.imageshack.us/img384/6255/deleteexecutionplan.png</a></p>
<p><strong>Edit :</strong>
I found a solution (not sure if it's the ideal solution)- it's in the response bellow.</p>
http://stackoverflow.com/questions/1571059/large-number-of-logical-reads-on-single-row-delete/1576614#15766140Answer by sirrocco for Large number of "logical reads" on single row deletesirrocco2009-10-16T07:24:13Z2009-10-16T07:24:13Z<p><a href="http://stackoverflow.com/questions/914637/delete-command-is-too-slow-in-a-table-with-clustered-index/914670#914670">This answer</a> solved the problem, now deletes work like a charm. I'm not sure if there are any downsides I should be aware of.</p>
http://stackoverflow.com/questions/1421257/intercept-javascript-event1Intercept javascript event sirrocco2009-09-14T12:28:41Z2009-10-12T18:00:03Z
<p>Here's what I'm trying to do :</p>
<p>I have a page with some links. Most links have a function attached to them on the <em>onclick</em> event. </p>
<p>Now, I want to set a css class to some links and then whenever one of the links is clicked I want to execute a certain function - after it returns , I want the link to execute the onclick functions that were attached to it. </p>
<p>Is there a way to do what I want ? I'm using jQuery if it makes a difference.</p>
<p>Here's an attempt at an example :</p>
<pre><code>$("#link").click(function1);
$("#link").click(function2);
$("#link").click(function(){
firstFunctionToBeCalled(function (){
// ok, now execute function1 and function2
});
}); // somehow this needs to be the first one that is called
function firstFunctionToBeCalled(callback){
// here some user input is expected so function1 and function2 must not get called
callback();
}
</code></pre>
<p>All this is because I'm asked to put some confirmation boxes (using boxy) for a lot of buttons and I really don't want to be going through every button.</p>
http://stackoverflow.com/questions/1512878/mixing-jquery-ajax-post-to-actionresult-can-i-still-return-a-new-view/1512939#15129390Answer by sirrocco for Mixing Jquery Ajax Post To ActionResult, can I still return a new view?sirrocco2009-10-03T05:58:33Z2009-10-03T05:58:33Z<p>You should probably return the url to redirect to (or something so you can decide on the client the redirect url) , and make the redirect from js.</p>
http://stackoverflow.com/questions/1461002/async-httpwebrequest-thread-number0Async HttpWebRequest - thread numbersirrocco2009-09-22T16:03:19Z2009-09-22T16:06:40Z
<p>Let's say I have the following code :</p>
<pre><code>ThreadPool.SetMinThreads(100, 100);
for (int i = 0; i < 100; i++)
{
var request = WebRequest.Create(url);
request.BeginGetResponse(ar =>
{
//inside AsynchCallBack method for request.BeginGetResponse()
var response = (HttpWebResponse)request.EndGetResponse(ar);
string html;
using (var receiveStream = response.GetResponseStream())
using (var readStream = new StreamReader(receiveStream
, Encoding.UTF8))
{
html = readStream.ReadToEnd();
}
Console.WriteLine(Thread.CurrentThread.ManagedThreadId);
}, null
);
}
</code></pre>
<p>I'm expecting to see quite a lot of threads when writing to the console the ManagedThreadId - of course I am wrong :) . I generally see only 2 different thread Ids and once in a while 3 thread Ids. </p>
<p>Why this behavior ? What am I missing?</p>
http://stackoverflow.com/questions/208682/why-does-a-checkbox-remain-checked-in-ff3-but-not-in-ie-chrome-or1Why does a checkbox remain checked in FF3 but not in IE, Chrome or ...sirrocco2008-10-16T13:58:19Z2009-09-06T16:05:03Z
<p>So - I have a checkbox</p>
<pre><code><asp:CheckBox ID="chkOrder" runat="server" Visible='<%#IsCheckBoxVisible() %>'
Checked="false"
OnCheckedChanged="chkOrder_CheckedChanged" AutoPostBack="true"
EnableViewState="false"></asp:CheckBox>
</code></pre>
<p>the one above. Now, the checkbox is in a gridview and on databound - for all the rows in the gridview the checkbox is set to false. The problem is that the first checkbox is still true checked. </p>
<p>In IE the problem doesn't exist, same for Chrome. I'm running out of options.
Also if i use </p>
<pre><code>$("checkboxName").attr("checked"); // verified on jquery ready function.
</code></pre>
<p>In FF it is true; IE false; Chrome false. </p>
<p>Any tips?</p>
<p><strong>EDIT</strong></p>
<p>Now get ready for this : in the generated html - there is NO checked attribute.
The diff between FF and IE is <strong>exactly the same</strong>.</p>
<p>Another thing - the grid that contains the checkboxes has an ajax panel on it and when I page the grid, try to go to page 2 - the checkedChanged in codebehind is triggered.</p>
http://stackoverflow.com/questions/1360388/how-do-you-map-aggregate-functions-in-nhibernate/1360405#13604051Answer by sirrocco for How do you map aggregate functions in NHibernate?sirrocco2009-09-01T03:36:48Z2009-09-01T03:36:48Z<p>From what I know, you can't map that using nhibernate. An entity represents a table(most of the times) , what you have there is more along the lines of a report. </p>
<p>To have access to that class I would create a view in the database and then create a separate entity. In your normal use of Buyer you probably don't always need AverageOrderAmount and LastOrderDate - I think that you're using that to display this information on the interface , in which case you should create and map a DB view.</p>
http://stackoverflow.com/questions/1337793/nhibernate-objectdeletedexception/1338815#13388150Answer by sirrocco for NHibernate.ObjectDeletedExceptionsirrocco2009-08-27T04:11:43Z2009-08-27T04:11:43Z<p>Well, I don't think the Record should have a cascade="all" on the Artist.</p>
<p>The problem is that you call delete on the Artist and when you save the Record it will try to re-save the artist (because of the cascade). Hence the error :).</p>
<p>Since you have not-null on the Record's Artist property , you shouldn't delete an Artist, but delete the Record and the Artist should be deleted automatically .</p>
http://stackoverflow.com/questions/1283924/how-can-i-set-a-property-using-nhibernate-mapping-column-using-some-crtieria/1301748#13017481Answer by sirrocco for How can I set a Property using NHibernate Mapping column using some crtieriasirrocco2009-08-19T18:21:46Z2009-08-19T18:21:46Z<p>I wouldn't make BestSellingProduct a property on ProductCategory - I mean I would imagine a ProductCatalog that can answere to : get me the bestselling product for a category .</p>
<p>If you <strong>really</strong> want to use the property then you could do what section 13.4 says should be possible : <a href="https://www.hibernate.org/hib%5Fdocs/nhibernate/1.2/reference/en/html/querysql.html" rel="nofollow">Custom SQL for loading - nhibernate</a></p>
http://stackoverflow.com/questions/1296728/bidirectional-hql-query-with-nhibernate/1297679#12976791Answer by sirrocco for Bidirectional HQL Query with NHibernatesirrocco2009-08-19T03:21:08Z2009-08-19T03:21:08Z<p>It would be something like :</p>
<pre><code>select p from Parent
join p.Children c
where c.Property = 'some_value'
</code></pre>
<p>Also have a look at <a href="https://www.hibernate.org/hib%5Fdocs/nhibernate/html/queryhql.html" rel="nofollow">The NHibernate Query Language</a> </p>
http://stackoverflow.com/questions/1295432/c-my-dialog-return-value-doesnt-work/1295453#12954533Answer by sirrocco for C#: My dialog return value doesn't worksirrocco2009-08-18T17:46:11Z2009-08-18T17:46:11Z<p>You need to set the DialogResult property of the child form</p>
<pre><code>DialogResult = DialogResult.OK
</code></pre>
<p>in the button click . </p>
http://stackoverflow.com/questions/1288463/how-to-invalidate-portions-of-asp-net-mvc-output-cache/1289655#12896550Answer by sirrocco for How to "invalidate" portions of ASP.NET MVC output cache?sirrocco2009-08-17T18:38:42Z2009-08-18T03:16:34Z<p>One way is to use the method :</p>
<pre><code>HttpResponse.RemoveOutputCacheItem("/Home/About");
</code></pre>
<p>Another way is described here : <a href="http://aspalliance.com/668" rel="nofollow">http://aspalliance.com/668</a></p>
<p>I think you could implement the second method by using a method level attribute for every action that you want and just add to it the string representing the key. That's if I understood your question.</p>
<p><strong>Edit:</strong> Yes the asp.net mvc OutputCache is just a wrapper .</p>
<p>If you're using varyByParam="none" then you just invalidate "/Statistics" - that's if / are querystring values. This will invalidate all versions of the page</p>
<p>I did a quick test and if you add varyByParam="id1" and then create multiple versions of the page - if you say invalidate invalidate "/Statistics/id1" it will invalidate just that version. But you should do further tests.</p>
http://stackoverflow.com/questions/1286827/nhibernate-save-get-problem/1288910#12889103Answer by sirrocco for nhibernate 'save' -> 'get' problemsirrocco2009-08-17T16:12:53Z2009-08-17T18:08:12Z<p>Ok, I just tested this :</p>
<pre><code> ISession session = s.CreateSession();
User user = new User();
user.Number = 122;
user.UserName = "u";
user.Id = 1;
session.Save(user);
User user1 = session.CreateCriteria<User>().Add(Restrictions.Eq("UserName", "u")).UniqueResult<User>();
session.Flush();
</code></pre>
<p>First the Select is being executed from the CreateCriteria and then on Flush the insert. So that's why it's not finding anything.</p>
<p>I also tested with <code>Get<User>(1)</code> and it returns the entity passed to the Save method - no query is executed.</p>
<p>Still - why query the database since you have the entity right there ?</p>
<p>Also, you say you use Get and then say you want to load by the UserName - is the UserName the primary key ? Get tries to load by the primary key.</p>
http://stackoverflow.com/questions/1277971/nhibernate-tag-cloud-query/1282547#12825471Answer by sirrocco for Nhibernate Tag Cloud Querysirrocco2009-08-15T18:50:20Z2009-08-16T04:34:09Z<p>I managed to get it working like this :</p>
<pre><code>var dc = DetachedCriteria.For<Foo>( "f")
.CreateCriteria("Tags", "t")
.Add(Restrictions.InG("t.Id", idsIn))
.SetProjection(Projections.SqlGroupProjection("{alias}.FooId", "{alias}.FooId having count(distinct t1_.TagId) = " + idsIn.Count,
new[] { "Id" },
new IType[] { NHibernateUtil.Int32 }));
</code></pre>
<p>The only problem here is the count(<strong>t1_</strong>.TagId) - but I think that the alias should be generated the same every time in this DetachedCriteria - so you should be on the safe side hard coding that.</p>
http://stackoverflow.com/questions/1278441/httpcontext-current-user-isinrolerolename-always-returns-false/1278488#12784883Answer by sirrocco for HttpContext.Current.User.IsInRole(roleName) always returns falsesirrocco2009-08-14T15:20:50Z2009-08-14T15:20:50Z<p>First : use a profiler and when executing the HttpContext.Current.User.IsInRole("{roleName}") line, check what the sql query is.</p>
<p>If it's not making a query then you probably have cacheRolesInCookie="true" and IsInRole will be checking the FormsAuthenticationTicket for UserData. Be sure that when you create the FormsAuthenticationTicket you set the userdata parameter to a comma delimited string with the roles of the user.</p>
http://stackoverflow.com/questions/1276075/nhibernate-deleting-a-collection-and-re-inserting/1276154#12761540Answer by sirrocco for NHibernate: Deleting a collection and re-insertingsirrocco2009-08-14T05:11:23Z2009-08-14T05:11:23Z<p>I think that when you edit you shouldn't create a new object - that's why nhibernate doesn't remove the permission collection. </p>
<p>Load the existing user from the DB, and then do a .Remove() on his permissions collection.</p>
http://stackoverflow.com/questions/1275728/problems-with-a-custom-route-in-asp-net-mvc/1275877#12758771Answer by sirrocco for Problems with a custom route in ASP.NET-MVC.sirrocco2009-08-14T03:16:50Z2009-08-14T04:03:05Z<p>First you should put your most generic route at the bottom.</p>
<p>Then, how about doing something like :</p>
<pre><code> routes.MapRoute(
"materias",
"{materias}/{action}/{id},{titulo_materia}.html",
new { controller = "materias", action = "Index", id = "", titulo_materia = "" }
);
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = "" } // Parameter defaults
);
</code></pre>
<p>This way , the materias route only works for the materias controller. (not tested)</p>
<p><strong>EDIT:</strong>
htmm .. try using martin's example with a small addition : </p>
<pre><code>Html.RouteLink("Link Title", new { controller = "Controller", Action= "Action",id = this.Model.login });
</code></pre>
http://stackoverflow.com/questions/1275890/check-file-in-used-by-c-code/1275910#12759106Answer by sirrocco for Check file in used by C# codesirrocco2009-08-14T03:33:08Z2009-08-14T03:33:08Z<p>Something like this should work : </p>
<pre><code> public bool FileIsLocked(string fileName)
{
FileStream fs;
try
{
fs = File.Open(fileName, FileMode.OpenOrCreate, FileAccess.Read, FileShare.None);
fs.Dispose();
}
catch (IOException)
{
return true;
}
return false;
}
</code></pre>
http://stackoverflow.com/questions/1275725/restrictions-disjunction-between-condition-a-and-condition-b-or-condition-c-and/1275892#12758921Answer by sirrocco for Restrictions.Disjunction() between condition a AND condition b OR condition c AND condition dsirrocco2009-08-14T03:23:45Z2009-08-14T03:23:45Z<p>It's not exactly pretty but you would write it like this :</p>
<pre><code>.Add(
Restrictions.Or(
Restrictions.Conjunction().Add(Restrictions.Eq("columnA", true)).Add(Restrictions.Eq("columnB", true)),
Restrictions.Conjunction().Add(Restrictions.Eq("columnC", true)).Add(Restrictions.Eq("columnD", true))
);
)
</code></pre>
http://stackoverflow.com/questions/1272999/am-i-using-asp-net-mvc-correctly/1273586#12735862Answer by sirrocco for am i using asp.net mvc correctly?sirrocco2009-08-13T17:54:29Z2009-08-13T17:54:29Z<p>The answere is - you souldn't have html in your controller. If you can't use the grid from MvcContrib as suggested then you sould create a class that takes the DataTable and outputs the html - in an overridden ToString method or a specific method that you call .</p>
<p>And use it like :</p>
<pre><code><%= new MyGridGenerator(DataTable ..) %>
</code></pre>
http://stackoverflow.com/questions/1270224/how-does-nhibernate-know-which-class-properties-to-put-value-into/1273490#12734901Answer by sirrocco for How does NHibernate know which class properties to put value into? sirrocco2009-08-13T17:39:02Z2009-08-13T17:39:02Z<p>Are you sure it works correctly ? I just tested this and added one child to each collection and as expected each collection had the same 2 children.</p>
http://stackoverflow.com/questions/1271626/visualization-of-activerecord-nhibernate-entity-model/1272033#12720331Answer by sirrocco for Visualization of ActiveRecord / NHibernate Entity Modelsirrocco2009-08-13T13:41:51Z2009-08-13T15:11:05Z<p>The best thing I can think of is generating a class diagram from VisualStudio of your classes .... </p>
http://stackoverflow.com/questions/1270207/complex-model-binding1Complex model binding sirrocco2009-08-13T05:40:22Z2009-08-13T06:57:22Z
<p>I have a Client dto that contains a bunch of fields and also contains a List. </p>
<p>Now, I can bind to it quite easy, and it will display the Client with all of his addresses. The thing is that the user can delete and add addresses dynamically. </p>
<p>I thought about adding forms surrounding each address but then I end up with inner forms and I know browsers don't play well with that. </p>
<p>Then I thought about using javascript but if an address is removed, I have to go over all addresses and change their indexes (addresses[0].City )because I noticed that if the indexes are not in order, and the action takes a ClientForm as a parameter, then only the addresses that have consecutive indexes and they start at 0 - will get in the ClientForm.Addresses list.</p>
<p>Any other solutions that are easy to implement ? Am I missing something ?</p>
http://stackoverflow.com/questions/1269970/nhibernate-set-property-default-value/1270225#12702250Answer by sirrocco for NHibernate Set Property Default Valuesirrocco2009-08-13T05:47:33Z2009-08-13T05:47:33Z<p>If the ParentCategoryId is not constrained by a foreign key, then you can have in your code ... something like :</p>
<pre><code>class Category{
....
public static Category NoParent{
get{ return new Category{Id = 0}; }
}
....
}
</code></pre>
<p>and now, instead of setting to null, just set it to NoParent. Or in the setter of ParentCategory, if value is null, then set it to NoParent.</p>
<p>This is basically <strong>Spencer Ruport's</strong> ideea :P</p>
http://stackoverflow.com/questions/1252313/persist-a-top-level-collection/1253026#12530261Answer by sirrocco for Persist a top-level collection?sirrocco2009-08-10T03:43:10Z2009-08-10T03:43:10Z<p>If you load objects like in your example - then yes you have to persist them one by one.</p>
<p>However, if you make a small design change, and load something like : Account that has an <code>IList<Project></code> - if you specify cascade "what_cascade_you_need" in the mapping , then when you change the projects on Account , you only have to save Account and everything will get saved.</p>
http://stackoverflow.com/questions/1234704/nhibernate-2-1-proxy-factory-options-what-are-the-differences-and-which-to-choo/1234868#12348683Answer by sirrocco for NHibernate 2.1 Proxy Factory options - what are the differences and which to choose?sirrocco2009-08-05T18:16:26Z2009-08-05T18:16:26Z<p>You can read more about them here :</p>
<p><a href="http://nhforge.org/blogs/nhibernate/archive/2008/11/09/nh2-1-0-bytecode-providers.aspx" rel="nofollow">http://nhforge.org/blogs/nhibernate/archive/2008/11/09/nh2-1-0-bytecode-providers.aspx</a></p>
<p>and </p>
<p><a href="http://groups.google.com/group/nhusers/browse%5Fthread/thread/2f78857456bde8d6" rel="nofollow">http://groups.google.com/group/nhusers/browse_thread/thread/2f78857456bde8d6</a></p>
<p>Basically at this point the main thing is : just pick one and be done :) .</p>
http://stackoverflow.com/questions/1231054/nhibernate-easiest-way-to-do-a-like-search-against-an-integer-column-with-crite/1234142#12341423Answer by sirrocco for NHibernate - easiest way to do a LIKE search against an integer column with Criteria API?sirrocco2009-08-05T15:53:54Z2009-08-05T17:50:29Z<p>If Number were a string, then it would be easy :</p>
<pre><code>.Add(Restrictions.Like("Number", "some_value",MatchMode.Anywhere))
</code></pre>
<p>Since you have a number, NHibernate will check the type of Number and if you give it a string it will throw an exception.</p>
<p>Not sure why the NH team didn't provide an overload with object as parameter and a MatchMode parameters ....</p>
<p>Anyhow, you can still do it like this : </p>
<pre><code>.Add(Expression.Sql("{alias}.Number like ?", "%2%", NHibernateUtil.String))
</code></pre>
<p><strong>Edit</strong></p>
<p>About the alias : </p>
<p>(i can't find where the documentation talks about this but here's my understanding of it )</p>
<p>{alias} returns the alias used inside by NH for the most recent CreateCriteria. So if you had :</p>
<pre><code>session.CreateCriteria<User>("firstAlias")
.CreateCriteria("firstAlias.Document", "doc")
.Add(Expression.Sql("{alias}.Number like ?", "%2%",
NHibernateUtil.String)).List<User>();
</code></pre>
<p>{alias} in this case would be 'doc' - so you would end up with : doc.Number .</p>
<p>So, always use {alias} after the CreateCriteria whose alias you need to use.</p>
http://stackoverflow.com/questions/1696182/not-crawling-the-same-content-twiceComment by sirrocco on Not crawling the same content twicesirrocco2009-11-08T15:55:19Z2009-11-08T15:55:19ZAs I mentioned in the edit, I meant that once a "Result" was added it doesn't change . When I said pages I meant more in the sense of paging some results.
The total number of pages changes once stuff is added but the content of one Result doesn't change usually .http://stackoverflow.com/questions/1696182/not-crawling-the-same-content-twice/1696193#1696193Comment by sirrocco on Not crawling the same content twicesirrocco2009-11-08T12:16:48Z2009-11-08T12:16:48ZDamn, you're right, I just realized that each result on the page must have a unique url. Thanks :)http://stackoverflow.com/questions/1576779/why-can-i-not-compare-two-generic-objects-of-a-certain-implicit-type/1576832#1576832Comment by sirrocco on Why can I not compare two generic objects of a certain implicit type?sirrocco2009-10-16T09:30:21Z2009-10-16T09:30:21ZWell if you're using the second version "ISettings explicit1 = null;" - then explicit1 is a reference type and that's why it works. Just implement IEquatable use .Equals and be done with it :)http://stackoverflow.com/questions/1576779/why-can-i-not-compare-two-generic-objects-of-a-certain-implicit-type/1576832#1576832Comment by sirrocco on Why can I not compare two generic objects of a certain implicit type?sirrocco2009-10-16T08:55:19Z2009-10-16T08:55:19ZWell then you need ISettings to implement IEquatable since there is no default == on a Struct. http://stackoverflow.com/questions/1550718/unable-to-bind-id-property-to-the-view-due-to-conflict-with-id-property-of-systemComment by sirrocco on Unable to bind ID Property to the View,due to conflict with ID Property of System.Web.UI.Page in asp.net mvc.sirrocco2009-10-13T04:33:35Z2009-10-13T04:33:35ZWhat is the ID property ? If your trying to access your model , then you use what mathieu suggested. - The ID property.. is some property of the page, you don't use that. http://stackoverflow.com/questions/1465509/best-way-to-maintain-session-state-in-mvc/1465516#1465516Comment by sirrocco on Best way to maintain session state in MVCsirrocco2009-09-23T17:21:42Z2009-09-23T17:21:42ZQuerystring for the win - always use the querystring for a search. It's much more friendly. http://stackoverflow.com/questions/1461002/async-httpwebrequest-thread-number/1461021#1461021Comment by sirrocco on Async HttpWebRequest - thread numbersirrocco2009-09-22T16:11:26Z2009-09-22T16:11:26ZWow - that was fast :) . Thank you very much.http://stackoverflow.com/questions/1421257/intercept-javascript-event/1421364#1421364Comment by sirrocco on Intercept javascript event sirrocco2009-09-14T12:54:04Z2009-09-14T12:54:04ZYes, but when that gets clicked, I need to execute a function and on that functions callback - continue to run all it's click attached functions.http://stackoverflow.com/questions/1421257/intercept-javascript-event/1421276#1421276Comment by sirrocco on Intercept javascript event sirrocco2009-09-14T12:46:39Z2009-09-14T12:46:39ZExactly, the thing is that every link has a different method/methods - and the mechanism needs to be generic - so I can apply it to any element.http://stackoverflow.com/questions/1357992/request-isauthenticated-false-on-ajax-postComment by sirrocco on Request.IsAuthenticated = false on Ajax postsirrocco2009-08-31T16:02:07Z2009-08-31T16:02:07ZThis is NOT by design - a request (ajax or not) is just a request to a web server. So you should give some more details about this - if you hit f5 - the user is authenticated and on the next ajax call - it's not authenticated ?http://stackoverflow.com/questions/1337793/nhibernate-objectdeletedexception/1338815#1338815Comment by sirrocco on NHibernate.ObjectDeletedExceptionsirrocco2009-08-28T03:55:35Z2009-08-28T03:55:35ZWell, if Artist is referenced by multiple Records, and you delete the Artist - wouldn't you end up with inconsistency in the Database ? - with Records that have non existent Artists ? Don't you have FKs in the DB ?http://stackoverflow.com/questions/1338175/nhibernate-and-mysql-is-inserting-and-selecting-not-updatingComment by sirrocco on NHibernate and MySql is inserting and Selecting, not updatingsirrocco2009-08-27T04:05:31Z2009-08-27T04:05:31ZThe thing is , even without the Session.Update , the user should get updated.
Something special in the GetById method ? :Dhttp://stackoverflow.com/questions/491375/readonlycollection-or-ienumerable-for-exposing-member-collections/491591#491591Comment by sirrocco on ReadOnlyCollection or IEnumerable for exposing member collections?sirrocco2009-08-26T17:59:57Z2009-08-26T17:59:57ZWell there you go - 5 minutes on SO and I already feel a bit smarter :Phttp://stackoverflow.com/questions/856761/does-nhibernate-criteria-api-support-projections-on-collection-properties/1323889#1323889Comment by sirrocco on Does NHibernate Criteria API support projections on collection properties?sirrocco2009-08-25T04:01:36Z2009-08-25T04:01:36ZIt would suck .. but you could map the parent on the children in a protected property or private variable that you don't use .... http://stackoverflow.com/questions/1325947/net-developers-please-i-need-mcts-and-mcpd-exam-dumpsComment by sirrocco on .Net Developers! Please I need MCTS and MCPD exam dumpssirrocco2009-08-25T03:59:46Z2009-08-25T03:59:46Zjust curious if I can comment in a closed thread.