Search Results

9
votes
10answers
1k views

Whither Managed Extensibility Framework for .NET?

Has anyone worked much with Microsoft's Managed Extensibility Framework (MEF)? Kinda sounds like it's trying to be all things to all people - It's an add-in manager! It's duck typing! I'm wondering …
6
votes
2answers
938 views

Should repositories implement IQueryable<T>?

I'm considering one of two IRepository interfaces, one that is a descendant of IQueryable and one that contains IQueryable. Like this: public interface IRepository<T> …
5
votes

Whither Managed Extensibility Framework for .NET?

This post refers to the Managed Extensibility Framework Preview 2. So, I had a run through MEF and wrote up a quick "Hello World", which is presented below. I gotta say it was totally easy …
14
votes

NHibernate.MappingException: No persister for:

Sounds like you forgot to add a mapping assembly to the session factory configuration.. If you're using app.config... . . <property name="show_sql">true</proper …
0
votes

Should I recompile the libraries for .NET 4.0?

It depends. I'd say if you don't have a lot of external dependencies, go for it. Just be aware that your customers will need to have .NET 4 on their systems. That might not be a big deal if you're …