Search Results

0
votes
2answers
393 views

Method-missing difficulties in C# 4.0: dynamic vs RealProxy

Does anyone know of a way to intercept dynamic method calls (particularly those that are going to raise RuntimeBinderExceptions) with a RealProxy? I was hopin …
0
votes

What guidelines are appropriate for determining when to implement a class member as a property versus a method?

What's so interesting about those guidelines is that they are clearly an argument for having extension properties as well as extension methods. Shame. …
0
votes

Does This ASP.NET Consultant Know What He’s Doing?

The session thing is possible. It's a bug, beyond doubt, but it could be that the write arrives at whatever custom session state provider you're using after the next read. The session state provide …
2
votes

Can this mapping be done with (Fluent) NHibernate?

If you forget about the multiple foreign key columns, you can make this an <any&g …
4
votes

Problem using SQLite :memory: with NHibernate

If you add Pooling=True;Max Pool Size=1 to your connection string, you'll get the same connection (and therefore database) each time. …
0
votes

How to check if C# class has security attribute used

I don't have an answer, but if it gives people more information to reproduce the issue: [TestFixture] public class SecurityExperiments { [Test] public void ShouldGetCustomSe …