您还尚未登录 | 登录 或者 注册
Sb2 Developers Blog
try { } catch { } finally { }
Feed Tags
Feed & Web Facts
10
Feed Item Count
29 五月 12 03:25
Last Reading
2.0
RSS/XML Version
(en-US)
Feed Language
utf-8
Feed Encoding
Page-Views
 
Weekly People
Week
blog.sb2.fr
Sb2 Developers Blog
Newest Posts in Feed
Microsoft Office Excel instance does not close.
Hi,   I found an issue, when an user quit an Excel instance created with Microsoft Office Interop library. The process does not exit properly, and i can't manange this issue with the calling application. To set the context : The main application is an Addin for Office (Excel, Word and PowerPoint) and one action launches a new instance of Excel where the user can see and do some actions. And...
FluentNHibernarte.Search 0.3 Beta Released Now Support Fluent XML-Less Configuration
Just released FluentNHibernate.Search 0.3 Beta which now support Fluent XML-Less Configuration available on CodePlex. No need to configure NHibernate.Search in web.config or app.config, you can know configure it like FluentNHibernate do for NHibernate. 1: Configuration nhcfg = FluentSearch.Configure() 2: .DefaultAnalyzer().Standard() 3: .DirectoryProvider().FSDirectory() 4: .Ind...
FluentNHibernarte.Search 0.2 Beta Released
I’ve just released FluentNHibernate.Search 0.2 Beta which is available on CodePlex and support the following new features.   Field Mapping without specifying "Name" Actually we needed to specify Field name using .Field(“FieldName”) : 1: public class BookSearchMap : DocumentMap 2: { 3: public BookSearchMap() 4: { 5: Id(p => p.BookId).Field("BookId").Bridge().Guid(); ...