active questions tagged nhibernate - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T08:52:27Zhttp://stackoverflow.com/feeds/tag/nhibernatehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1845444/is-nhibernate-linq-1-0-ga-provider-production-ready0Is NHibernate.Linq 1.0 GA Provider Production ReadyYoann. B2009-12-04T07:41:27Z2009-12-04T08:17:34Z
<p>Is NHibernate.Linq 1.0 GA Provider Production Ready ?</p>
http://stackoverflow.com/questions/1830846/nhibernate-on-medium-trust-and-godaddy-hosting0Nhibernate on medium trust and godaddy hosting [closed]Pankaj2009-12-02T05:36:29Z2009-12-04T08:13:52Z
<p>Hello All</p>
<p>I have recently used Nhibernate on medium trust and host my website on godaddy hosting. I am sharing my experience to handle this problem on stackoverflow.</p>
<p>Problem:- Nhibernate used reflection and dynamic method in internal level so it is hard to run Nhibernate on medium trust. Godaddy shared hosting provide medium trust.</p>
<p>Solution:- First of all in your web.config </p>
<ol>
<li><p>Add 'requirePermission="false"' to your nHibernate configuration section in your web.config file.</p>
<p><strong>section name="nhibernate" requirePermission="false" type="System.Configuration.NameValueSectionHandler, System,Version=1.0.5000.0,Culture=neutral,PublicKeyToken=b77a5c561934e089" /</strong></p></li>
<li><p>Disable the Reflection Optimizer.Again a simple configuration change.</p></li>
</ol>
<p>With in <strong>nhibernate</strong> section set</p>
<pre><code>**add key="hibernate.use_reflection_optimizer" value="False" /**
</code></pre>
<p>3.Disable all lazy loading of entities</p>
<p>class name="ABC" table="ABC" lazy="false"</p>
<p>Lazy loading requires the generation of 'proxy' classes that delay the retrieval of associated entities from the data store until they are actually accessed in code. </p>
http://stackoverflow.com/questions/1845476/nhibernate-how-to-map-two-tables-to-a-single-non-persistent-class0nhibernate: how to map two tables to a single non-persistent class?npeBeg2009-12-04T07:50:31Z2009-12-04T07:50:31Z
<p>I have two similar tables (their structure is similar) and I need to read/write data using only one class.
Theese tables could not be joined because the only common thing they have is an Id. Plus one of the tables may or may not have an entity with the specified Id, and both tables may or may not have entities.</p>
<p>I can not change the structure of the DB, and it's not a good thing if i have to add something to it. The simplest way I found is to make a DB view with fully joined tables, but, as I already said, adding smth to the structure of the DB is actually not welcome..</p>
<p>Hope for your help!</p>
http://stackoverflow.com/questions/1843060/nhibernate-how-to-get-an-item-that-is-not-referenced-by-an-item-in-another-tabl1NHibernate - how to get an item that is not referenced by an item in another tableChris2009-12-03T21:30:13Z2009-12-04T07:07:01Z
<p>Let's say I have a class Voucher:</p>
<pre><code>public class Voucher
{
public Guid Id {get;set;}
public DateTime DateAvailable {get;set;}
}
</code></pre>
<p>and a class Entry</p>
<pre><code>public class Entry
{
public Guid Id {get;set;}
public Voucher Voucher {get;set;}
// ... other unrelated properties
}
</code></pre>
<p>How can I create an NHibernate Criteria query that finds the first available voucher that is NOT currently assigned to an Entry?</p>
<p>The equivalent SQL would be</p>
<pre><code>select
v.Id, v.DateAvailable
from
Voucher v
left join Entries e on e.VoucherId = v.Id
where
v.DateAvailable <= getutcdate() and
e.Id is null
</code></pre>
<p><strong>Edit:</strong> I'm still unable to figure this one out. The Voucher table has no reference to the Entries table, but I need to find the first voucher (by date order) that has not been assigned to an entry. This seems like such a simple task, but everything I keep reading about using NHibernate criteria left joins requires the Voucher object to have a property that references the entry. Surely there's a way to invert the query or add a reference property to the Voucher object without modifying the database to have each table reference the other.</p>
http://stackoverflow.com/questions/1029465/problem-running-latest-version-of-nhibernate0Problem running latest version of nhibernateunknown (yahoo)2009-06-22T21:21:38Z2009-12-04T05:31:38Z
<p>I downloaded latest version of NHibernate “2.1.0.2002”.</p>
<p>It built fine, but when I run my unit tests, I keep getting error :-</p>
<blockquote>
<p>System.IO.FileLoadException: Could not load file or assembly 'NHibernate, Version=2.0.1.4000, Culture=neutral, PublicKeyToken=aa95f207798dfdb4' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference.</p>
</blockquote>
<p>It looks like somewhere it looks of old version.</p>
<p>Here is link</p>
<p><a href="http://stackoverflow.com/questions/839112/problem-while-migrating-nhibernate-to-higher-version">http://stackoverflow.com/questions/839112/problem-while-migrating-nhibernate-to-higher-version</a></p>
<p>This is internal error I am getting:</p>
<pre>
=== Pre-bind state information ===
LOG: DisplayName = NHibernate, Version=2.0.1.4000, Culture=neutral, PublicKeyToken=aa95f207798dfdb4
(Fully-specified)
LOG: Appbase = file:///D:/Project Files/CIS3G/Webapp/_Test_DAL/bin/Debug
LOG: Initial PrivatePath = NULL
Calling assembly : CIS3G.DAL, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null.
===
LOG: This bind starts in default load context.
LOG: Using application configuration file: D:\Project Files\CIS3G\Webapp\_Test_DAL\bin\Debug\_Test_DAL.dll.config
LOG: Using machine configuration file from C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\config\machine.config.
LOG: Post-policy reference: NHibernate, Version=2.0.1.4000, Culture=neutral, PublicKeyToken=aa95f207798dfdb4
LOG: Attempting download of new URL file:///D:/Project Files/CIS3G/Webapp/_Test_DAL/bin/Debug/NHibernate.DLL.
WRN: Comparing the assembly name resulted in the mismatch: Minor Version
ERR: Failed to complete setup of assembly (hr = 0x80131040). Probing terminated.
</pre>
http://stackoverflow.com/questions/1844924/how-does-llblgen-pro-stack-up-against-nhibernate-performance-wise0How does LLBLGen Pro Stack up Against Nhibernate Performance WiseLuke1012009-12-04T04:48:14Z2009-12-04T05:18:03Z
<p>I have search the internet high and low looking for any performance information for LLBLGen Pro. None found. Just wanted to know how does LLBLGen Pro perform compared the Nhibernate. Thanks</p>
http://stackoverflow.com/questions/1843656/nhibernate-query-to-return-a-user-by-his-guid0nhibernate query to return a User by his Guidmrblah2009-12-03T22:59:28Z2009-12-04T01:01:03Z
<p>I have a user class:</p>
<pre><code>public class User
{
public virtual int ID {get;set;}
public virtual string UserGuid {get;set;} // its unique!
}
</code></pre>
<p>Can someone show me how to query using HQL and criteria to get the user by UserGuid?</p>
http://stackoverflow.com/questions/1843701/is-having-an-entity-named-order-an-issue-with-nhibernate1Is having an entity named Order an issue with nhibernate?mrblah2009-12-03T23:06:27Z2009-12-03T23:19:41Z
<p>Is having an entity named Order an issue with nhibernate?</p>
<p><b>Update</b></p>
<p>I ask because, it does!</p>
<p>I just ran sql profile, and when I run the code that they generate I get an error saying:</p>
<p>Msg 156, Level 15, State 1, Line 10
Incorrect syntax near the keyword 'Order'.</p>
<p>(or I have some issue with my mapping??)</p>
http://stackoverflow.com/questions/1740048/what-is-a-good-spring-net-nhibernate-tutorial1What is a good Spring.net/NHibernate tutorial?ProgrammingPope2009-11-16T04:30:02Z2009-12-03T23:08:39Z
<p>I am getting ready to start a project which will be using both Spring.net and NHibernate. I have seen a few good tutorials for NHibernate but have had a hard time finding resources for Spring.net. Specifically, I am looking for something that goes the setting up a solution and getting things running. Are there any good tutorials for a Spring.net newbie? Are there any good resources for using Spring.net and NHibernate together?</p>
http://stackoverflow.com/questions/1840649/converting-this-method-from-ilist-to-iqueryable0Converting this method from IList to IQueryablemrblah2009-12-03T15:30:11Z2009-12-03T22:52:45Z
<p>Is it possible to convert:</p>
<p>public IList Get()
{
return Session.CreateCriteria(typeof(T)).List();
}</p>
<p>to return IQueryable?</p>
<p>What is the difference between IList and IQueryable?</p>
http://stackoverflow.com/questions/1840853/nhibernate-operation-could-destabilize-the-runtime0nhibernate Operation could destabilize the runtime.mrblah2009-12-03T15:56:18Z2009-12-03T22:11:25Z
<p>Locally my site works, but at host I am getting the error:</p>
<p>"Operation could destabilize the runtime."</p>
<p>I am using nhibernate.
I am using the repository pattern.</p>
<pre><code>[VerificationException: Operation could destabilize the runtime.]
CategoryProxy..ctor() +6
[TargetInvocationException: Exception has been thrown by the target of an invocation.]
System.RuntimeTypeHandle.CreateInstance(RuntimeType type, Boolean publicOnly, Boolean noCheck, Boolean& canBeCached, RuntimeMethodHandle& ctor, Boolean& bNeedSecurityCheck) +0
System.RuntimeType.CreateInstanceSlow(Boolean publicOnly, Boolean fillCache) +86
System.RuntimeType.CreateInstanceImpl(Boolean publicOnly, Boolean skipVisibilityChecks, Boolean fillCache) +230
System.Activator.CreateInstance(Type type, Boolean nonPublic) +67
LinFu.DynamicProxy.ProxyFactory.CreateProxy(Type instanceType, IInterceptor interceptor, Type[] baseInterfaces) +20
NHibernate.ByteCode.LinFu.ProxyFactory.GetProxy(Object id, ISessionImplementor session) +208
[HibernateException: Creating a proxy instance failed]
NHibernate.ByteCode.LinFu.ProxyFactory.GetProxy(Object id, ISessionImplementor session) +306
</code></pre>
http://stackoverflow.com/questions/1804879/oracle-stored-procedure-with-out-parameter-using-nhibernate0Oracle Stored Procedure with out parameter using Nhibernatepublicgk2009-11-26T17:25:16Z2009-12-03T18:58:00Z
<p>How can I access the value of an out parameter of an oracle stored procedure in the .net code - Oracle stored procedure being called via Nhibernate?</p>
<p>Sample working code would help.</p>
http://stackoverflow.com/questions/1837298/advice-on-unitofwork-with-nhibernate-and-or-web-service0Advice on UnitOfWork with NHibernate and/or Web ServiceChrisKolenko2009-12-03T02:39:00Z2009-12-03T18:54:39Z
<p>Hi,</p>
<p>I'm looking for some advice for the following.</p>
<p>I need to create a DAL that is interchangeable between a database and a webservice.
I'm developing in C# and WPF. </p>
<p>has anyone see any good implementations of an IUnitOfWork and allows different DAL to be switch in or out using some sort of DI?</p>
<p><strong>EDIT</strong> </p>
<p>So after doing some reading. I've decided to use a Repository Pattern. The Rep Pattern takes in a IUnitOfWork. Above reads the opposite way around. Also here is an example for what i mean with the switch in or out. </p>
<pre><code>NHibernateProductRepository : IRepository<Product>
{
private IUnitOfWork _unitOfWork = null;
public NHibernateProductRepository(IUnitOfWork unitOfWork)
{
_unitOfWork = unitOfWork;
}
}
WebServiceProductRepository : IRepository<Product>
{
private IUnitOfWork _unitOfWork = null;
public WebServiceProductRepository (IUnitOfWork unitOfWork)
{
_unitOfWork = unitOfWork;
}
}
....
public static class Bootstrapper
{
public static void Load()
{
// Some sort of IOC.. Which will also be used for DI.
}
}
</code></pre>
<p>So I guess I need help with the IUnitOfWork stuff. The Web Service Repositories are going to be tricky. So how do I create some sort of transaction, and how do I queue etc etc. </p>
<p>One last thing, in a WPF environment multiple threads could be saving things to the database, so for each thread should it create it's own UnitOfWork? I'm scared a thread could commit half way through another etc.</p>
http://stackoverflow.com/questions/1841702/iis7-nhibernate-illegal-operation-attempted-on-a-registry-key-that-has-been-ma0IIS7 + NHibernate: Illegal operation attempted on a registry key that has been marked for deletionJames Hollingworth2009-12-03T17:55:10Z2009-12-03T17:58:05Z
<p>We have an asp.net MVC app using Fluent Nhibernate running on top of IIS7 & Windows Sever 2008. Frequently (although so far we have yet to consistently reproduce it) after a build we get a yellow screen of death with this exception: </p>
<pre><code>[COMException (0x800703fa): Illegal operation attempted on a registry key that has been marked for deletion. (Exception from HRESULT: 0x800703FA)]
System.Reflection.Assembly._nDefineDynamicModule(Assembly containingAssembly, Boolean emitSymbolInfo, String filename, StackCrawlMark& stackMark) +0
System.Reflection.Emit.AssemblyBuilder.DefineDynamicModuleInternalNoLock(String name, Boolean emitSymbolInfo, StackCrawlMark& stackMark) +381
System.Reflection.Emit.AssemblyBuilder.DefineDynamicModuleInternal(String name, Boolean emitSymbolInfo, StackCrawlMark& stackMark) +105
System.Reflection.Emit.AssemblyBuilder.DefineDynamicModule(String name, Boolean emitSymbolInfo) +83
Castle.DynamicProxy.ModuleScope.CreateModule(Boolean signStrongName) +206
Castle.DynamicProxy.ModuleScope.ObtainDynamicModuleWithWeakName() +63
Castle.DynamicProxy.Generators.Emitters.ClassEmitter.CreateTypeBuilder(ModuleScope modulescope, String name, Type baseType, Type[] interfaces, TypeAttributes flags, Boolean forceUnsigned) +78
Castle.DynamicProxy.Generators.Emitters.ClassEmitter..ctor(ModuleScope modulescope, String name, Type baseType, Type[] interfaces, TypeAttributes flags, Boolean forceUnsigned) +69
Castle.DynamicProxy.Generators.Emitters.ClassEmitter..ctor(ModuleScope modulescope, String name, Type baseType, Type[] interfaces) +36
Castle.DynamicProxy.Generators.BaseProxyGenerator.BuildClassEmitter(String typeName, Type parentType, Type[] interfaces) +140
Castle.DynamicProxy.Generators.ClassProxyGenerator.GenerateCode(Type[] interfaces, ProxyGenerationOptions options) +648
Castle.DynamicProxy.ProxyGenerator.CreateClassProxy(Type classToProxy, Type[] additionalInterfacesToProxy, ProxyGenerationOptions options, Object[] constructorArguments, IInterceptor[] interceptors) +139
Castle.DynamicProxy.ProxyGenerator.CreateClassProxy(Type classToProxy, Type[] additionalInterfacesToProxy, IInterceptor[] interceptors) +39
NHibernate.ByteCode.Castle.ProxyFactory.GetProxy(Object id, ISessionImplementor session) +416
[HibernateException: Creating a proxy instance failed]
NHibernate.ByteCode.Castle.ProxyFactory.GetProxy(Object id, ISessionImplementor session) +642
NHibernate.Tuple.Entity.AbstractEntityTuplizer.CreateProxy(Object id, ISessionImplementor session) +49
NHibernate.Persister.Entity.AbstractEntityPersister.CreateProxy(Object id, ISessionImplementor session) +102
NHibernate.Event.Default.DefaultLoadEventListener.CreateProxyIfNecessary(LoadEvent event, IEntityPersister persister, EntityKey keyToLoad, LoadType options, IPersistenceContext persistenceContext) +255
NHibernate.Event.Default.DefaultLoadEventListener.ProxyOrLoad(LoadEvent event, IEntityPersister persister, EntityKey keyToLoad, LoadType options) +400
NHibernate.Event.Default.DefaultLoadEventListener.OnLoad(LoadEvent event, LoadType loadType) +923
NHibernate.Impl.SessionImpl.FireLoad(LoadEvent event, LoadType loadType) +169
NHibernate.Impl.SessionImpl.InternalLoad(String entityName, Object id, Boolean eager, Boolean isNullable) +310
NHibernate.Type.EntityType.ResolveIdentifier(Object id, ISessionImplementor session) +211
NHibernate.Engine.TwoPhaseLoad.InitializeEntity(Object entity, Boolean readOnly, ISessionImplementor session, PreLoadEvent preLoadEvent, PostLoadEvent postLoadEvent) +527
NHibernate.Loader.Loader.InitializeEntitiesAndCollections(IList hydratedObjects, Object resultSetId, ISessionImplementor session, Boolean readOnly) +544
NHibernate.Loader.Loader.DoQuery(ISessionImplementor session, QueryParameters queryParameters, Boolean returnProxies) +1158
NHibernate.Loader.Loader.DoQueryAndInitializeNonLazyCollections(ISessionImplementor session, QueryParameters queryParameters, Boolean returnProxies) +105
NHibernate.Loader.Loader.LoadEntity(ISessionImplementor session, Object id, IType identifierType, Object optionalObject, String optionalEntityName, Object optionalIdentifier, IEntityPersister persister) +472
NHibernate.Loader.Entity.AbstractEntityLoader.Load(ISessionImplementor session, Object id, Object optionalObject, Object optionalId) +77
NHibernate.Loader.Entity.AbstractEntityLoader.Load(Object id, Object optionalObject, ISessionImplementor session) +30
NHibernate.Persister.Entity.AbstractEntityPersister.Load(Object id, Object optionalObject, LockMode lockMode, ISessionImplementor session) +182
NHibernate.Event.Default.DefaultLoadEventListener.LoadFromDatasource(LoadEvent event, IEntityPersister persister, EntityKey keyToLoad, LoadType options) +174
NHibernate.Event.Default.DefaultLoadEventListener.Load(LoadEvent event, IEntityPersister persister, EntityKey keyToLoad, LoadType options) +194
NHibernate.Event.Default.DefaultLoadEventListener.OnLoad(LoadEvent event, LoadType loadType) +923
NHibernate.Impl.SessionImpl.FireLoad(LoadEvent event, LoadType loadType) +169
NHibernate.Impl.SessionImpl.Get(String entityName, Object id) +191
NHibernate.Impl.SessionImpl.Get(Type entityClass, Object id) +139
NHibernate.Impl.SessionImpl.Get(Object id) +136
Huddle.DataAccess.Persistence.Repository`1.FindById(Int32 id) +281
Huddle.WebSite.Global.GetWorkspace() +241
Huddle.WebSite.Global.Application_BeginRequest(Object sender, EventArgs e) +437
System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +80
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +171
</code></pre>
<p>It seems a few other <a href="https://forum.hibernate.org/viewtopic.php?f=25&t=1001163" rel="nofollow">people</a> have found the same problem although no one seems to have a solution, any ideas?</p>
http://stackoverflow.com/questions/1830002/informix-with-nhibernate0Informix with NHibernatepeter2009-12-02T00:48:43Z2009-12-03T17:17:50Z
<p>Hi All,</p>
<p>I am trying to get Informix working with NHibernate on windows 7. I have a connection string that works fine with informix now, it is this,</p>
<p>Database=db;Server=server:port;uid=username;password=password;pooling=false</p>
<p>I am using the IBM.Data.Informix .NET provider version 9.0.0.2.</p>
<p>We have a number of different applications that work fine using this provider with the Informix servers that we are running.</p>
<p>My nhibernate application is connecting to the informix server now, but the problem is the form of the SQL that it is producing.</p>
<p>If my nhibernate code looks like this,</p>
<pre><code>using (ISession session = Config.SessionFactory.OpenSession())
{
return session
.CreateCriteria<DBTable>()
.Add(Restrictions.Eq("FieldValue", true))
.List<DBTable>();
}
</code></pre>
<p>I am new to Informix, but if I am not wrong the correct SQL would be this,</p>
<p>select * from DBTable where fieldValue = 'T'</p>
<p>But instead the SQL is it producing is,</p>
<p>select * from DBTable where fieldValue = True</p>
<p>Which is not working. I tried adding stuff like this to the nhibernate config file,</p>
<pre><code><property name="query.substitutions">True=T,False=F</property>
<property name="query.substitutions">True 'T',False 'F'</property>
<property name="query.substitutions">True='T',False='F'</property>
<property name="query.substitutions">True T,False F</property>
</code></pre>
<p>but that just doesn't seem to work. I couldn't find consistent documentation as to how to use the query.substitutions, and it seemed to differ depending on what database type you are using.</p>
http://stackoverflow.com/questions/1820950/fluent-nhibernate-join-with-constraint3Fluent NHibernate Join with ConstraintChris Browne2009-11-30T16:45:29Z2009-12-03T16:44:43Z
<p>i have an entity with its properities spread over two tables that i'd like to map to one class using Fluent NHibernate, but with a constraint on the joining table.</p>
<p>i've changed the domain of my problem for this question to be the familar 'customer' domain, so my example here may seam a little contrived, but it illustrates my problem. it's bascially this; i have a Customer table that has some customer attributes in it, but the first and last names of the customer are held in a separate CustomerName table as two rows linked to the customer and identified as first and last names.</p>
<p>the following is the table schema:</p>
<p>CREATE TABLE Customer(
CustomerId int,
Birthday datetime
)</p>
<p>CREATE TABLE CustomerName(
CustomerId int NOT NULL,
CustomerNameTypeId int NOT NULL,
Name nvarchar(25) NOT NULL
)</p>
<p>CREATE TABLE CustomerNameTypes(
CustomerNameTypeId NOT NULL,
Description nvarchar(25) NOT NULL
)</p>
<p>with the CustomerNameTypes table containing two rows:
1, "FirstName"
2, "SecondName"</p>
<p>what i need is a Fluent Mapping that will map the above to the following:</p>
<pre><code>public class Customer
{
public virtual int CustomerId { get; set; }
public virtual string FirstName { get; set; }
public virtual string LastName { get; set; }
public virtual DateTime Birthday { get; set; }
}
</code></pre>
<p>can anyone help?!</p>
<p>many thanks in advance
Chris Browne</p>
http://stackoverflow.com/questions/1836738/problem-integrating-wcf-with-sharp-architecture0Problem integrating WCF with Sharp architectureLeg10n2009-12-02T23:54:07Z2009-12-03T15:36:29Z
<p>Hi, I'm working with an application which uses wcf and sharp architecture, I'm trying to create a service to write to the database. Here is my service:</p>
<pre><code>[ServiceContract]
public interface IFacilitiesWcfService : ICloseableAndAbortable
{
[OperationContract]
void AddFacility(string facility);
}
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
class FacilitiesWcfService:IFacilitiesWcfService
{
public FacilitiesWcfService(IRepositoryWithTypedId<Facility,string> facilityRepository)
{
Check.Require(facilityRepository != null, "facilityRepository may not be null");
this.facilityRepository = facilityRepository;
}
private readonly IRepositoryWithTypedId<Facility,string> facilityRepository;
public void AddFacility(string facility)
{
facilityRepository.DbContext.BeginTransaction();
Facility newFacility = new Facility();
newFacility.SetAssignedIdTo(facility);
newFacility.NAME=facility;
newFacility.ADDRESS = facility;
facilityRepository.DbContext.CommitTransaction();
}
public void Abort() { }
public void Close() { }
}
</code></pre>
<p>And the LogisticsWCF.svc file in the web project:</p>
<pre><code><%@ ServiceHost Language="C#" Debug="true" Service="Project.Wcf.FacilitiesWcfService"
Factory="SharpArch.Wcf.NHibernate.ServiceHostFactory, SharpArch.Wcf" %>
</code></pre>
<p>I created a client with <code>svcutil.exe <a href="http://localhost:1905/LogisticsWCF.svc?wsdl" rel="nofollow">http://localhost:1905/LogisticsWCF.svc?wsdl</a></code> and then created this test case:</p>
<p>[TestFixture]
class WCFLogisticsTests
{
[Test]
public void CanAddFacility()
{</p>
<pre><code> FacilitiesWcfServiceClient facility = new FacilitiesWcfServiceClient();
facility.AddFacility("NEW");
facility.Close();
}
}
</code></pre>
<p><strong>But I get this exception:</strong></p>
<pre><code>TestCase 'Tests.Project.Web.WCFLogisticsTests.CanAddFacility'
failed: System.ServiceModel.FaultException`1[System.ServiceModel.ExceptionDetail] : The needed dependency of type FacilitiesWcfService could not be located with the ServiceLocator. You'll need to register it with the Common Service Locator (CSL) via your IoC's CSL adapter.
Server stack trace:
at System.ServiceModel.Channels.ServiceChannel.ThrowIfFaultUnderstood(Message reply, MessageFault fault, String action, MessageVersion version, FaultConverter faultConverter)
at System.ServiceModel.Channels.ServiceChannel.HandleReply(ProxyOperationRuntime operation, ProxyRpc& rpc)
at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)
at System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs)
at System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)
at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)
Exception rethrown at [0]:
at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
at IFacilitiesWcfService.AddFacility(String facility)
C:\Documents and Settings\epena\My Documents\SVN\Project\tests\Project.Tests\FacilitiesWcfService.cs(58,0): at FacilitiesWcfServiceClient.AddFacility(String facility)
WCFLogisticsTests.cs(18,0): at Tests.Project.Web.WCFLogisticsTests.CanAddFacility()
0 passed, 1 failed, 0 skipped, took 4.52 seconds (NUnit 2.5.2).
</code></pre>
<p>I think I'm missing some configuration of sharp architecture, because when I don't use <code>Factory="SharpArch.Wcf.NHibernate.ServiceHostFactory, SharpArch.Wcf"</code> in the .svc file I don't get the exception, but I'm not able to write anything to the database ( I get an ISession not configured exception).</p>
<p>I tried to follow the Northwind example, but it's not working, What can I be missing?</p>
http://stackoverflow.com/questions/1833879/advanced-search-with-distances-using-nhibernate-and-sql-server-geography1Advanced search with distances using NHibernate and SQL Server Geographyharriyott2009-12-02T16:02:38Z2009-12-03T13:51:14Z
<p>I've got an existing advanced search method in a repository that checks a <code>FormCollection</code> for the existence of search criteria, and if present, adds a criterion to the search e.g.</p>
<pre><code>public IList<Residence> GetForAdvancedSearch(FormCollection collection)
{
var criteria = Session.CreateCriteria(typeof(Residence))
.SetResultTransformer(new DistinctRootEntityResultTransformer());
if (collection["MinBedrooms"] != null)
{
criteria
.Add(Restrictions.Ge("Bedrooms", int.Parse(collection["MinBedrooms"])));
}
// ... many criteria omitted for brevity
return criteria.List<Residence>();
}
</code></pre>
<p>I've also got a basic distance search to find how far each residence is from the search criteria. The HBM for the query is </p>
<pre><code><sql-query name="Residence .Nearest">
<return alias="residence" class="Residences.Domain.Residence, Residences"/>
<return-scalar column="Distance" type="float"/>
SELECT R.*, dbo.GetDistance(:point, R.Coordinate) AS Distance
FROM Residence R
WHERE Distance < 10
ORDER BY Distance
</sql-query>
</code></pre>
<p>I had to define a function to calculate the distance, as there was no way to get NHibernate to escape the colons in the geography function:</p>
<pre><code> CREATE FUNCTION dbo.GetDistance
(
@firstPoint nvarchar(100),
@secondPoint GEOMETRY
)
RETURNS float
AS
BEGIN
RETURN GEOGRAPHY::STGeomFromText(
@firstPoint, 4326).STDistance(@secondPoint.STAsText()) / 1609.344
END
</code></pre>
<p>And the repository calls the named query thus:</p>
<pre><code>return Session.GetNamedQuery("Residence.Nearest")
</code></pre>
<p>.SetString("point", String.Format("POINT({0} {1})", latitude, longitude))
.List();</p>
<p>So my question is; how do I combine the two (or start from scratch), so I can filter the advanced search results to include only residences within 10 miles of the search location? </p>
<p><strong>UPDATE</strong> I have tried using NHibernate.Spatial with the following code:</p>
<pre><code>criteria.Add(SpatialExpression.IsWithinDistance(
"Coordinate", new Coordinate(latitude, longitude), 10));
</code></pre>
<p>but <code>SpatialExpression.IsWithinDistance</code> returned a <code>System.NotImplementedException</code>.</p>
http://stackoverflow.com/questions/1839382/nhibernate-jet-replica-database-exception-thrown-when-committing-transaction0NHibernate + Jet Replica Database - Exception thrown when committing transaction ("a different object with the same identifier value was already associated with the session).Bittercoder2009-12-03T11:35:30Z2009-12-03T11:35:30Z
<p>I have an application where we're using NHibernate and the NHibernate Jet Driver to open existing .MDB files (Access 2003 / Jet 4.0 databases), read some information and add some new records.</p>
<p>Unfortunately we have no control over the database format - so we're stuck having to support Jet.</p>
<p>The problem I'm facing is that when performing an insert it all works fine for a normal database, but if the database has been configured as either a design master or replica, then we get the following exception:</p>
<pre><code>"a different object with the same identifier value was already associated with the session: 109, of entity: Data.Models.Tag"
at NHibernate.Engine.StatefulPersistenceContext.CheckUniqueness(EntityKey key, Object obj)
at NHibernate.Event.Default.AbstractSaveEventListener.PerformSaveOrReplicate(Object entity, EntityKey key, IEntityPersister persister, Boolean useIdentityColumn, Object anything, IEventSource source, Boolean requiresImmediateIdAccess)
at NHibernate.Event.Default.AbstractSaveEventListener.PerformSave(Object entity, Object id, IEntityPersister persister, Boolean useIdentityColumn, Object anything, IEventSource source, Boolean requiresImmediateIdAccess)
at NHibernate.Event.Default.AbstractSaveEventListener.SaveWithGeneratedId(Object entity, String entityName, Object anything, IEventSource source, Boolean requiresImmediateIdAccess)
at NHibernate.Event.Default.DefaultSaveOrUpdateEventListener.SaveWithGeneratedOrRequestedId(SaveOrUpdateEvent event)
at NHibernate.Event.Default.DefaultSaveOrUpdateEventListener.EntityIsTransient(SaveOrUpdateEvent event)
at NHibernate.Event.Default.DefaultSaveOrUpdateEventListener.PerformSaveOrUpdate(SaveOrUpdateEvent event)
at NHibernate.Event.Default.DefaultSaveOrUpdateEventListener.OnSaveOrUpdate(SaveOrUpdateEvent event)
at NHibernate.Impl.SessionImpl.FireSaveOrUpdate(SaveOrUpdateEvent event)
at NHibernate.Impl.SessionImpl.SaveOrUpdate(String entityName, Object obj)
at NHibernate.Engine.CascadingAction.SaveUpdateCascadingAction.Cascade(IEventSource session, Object child, String entityName, Object anything, Boolean isCascadeDeleteEnabled)
at NHibernate.Engine.Cascade.CascadeToOne(Object child, IType type, CascadeStyle style, Object anything, Boolean isCascadeDeleteEnabled)
at NHibernate.Engine.Cascade.CascadeAssociation(Object child, IType type, CascadeStyle style, Object anything, Boolean isCascadeDeleteEnabled)
at NHibernate.Engine.Cascade.CascadeProperty(Object child, IType type, CascadeStyle style, Object anything, Boolean isCascadeDeleteEnabled)
at NHibernate.Engine.Cascade.CascadeCollectionElements(Object child, CollectionType collectionType, CascadeStyle style, IType elemType, Object anything, Boolean isCascadeDeleteEnabled)
at NHibernate.Engine.Cascade.CascadeCollection(Object child, CascadeStyle style, Object anything, CollectionType type)
at NHibernate.Engine.Cascade.CascadeAssociation(Object child, IType type, CascadeStyle style, Object anything, Boolean isCascadeDeleteEnabled)
at NHibernate.Engine.Cascade.CascadeProperty(Object child, IType type, CascadeStyle style, Object anything, Boolean isCascadeDeleteEnabled)
at NHibernate.Engine.Cascade.CascadeOn(IEntityPersister persister, Object parent, Object anything)
at NHibernate.Event.Default.AbstractFlushingEventListener.CascadeOnFlush(IEventSource session, IEntityPersister persister, Object key, Object anything)
at NHibernate.Event.Default.AbstractFlushingEventListener.PrepareEntityFlushes(IEventSource session)
at NHibernate.Event.Default.AbstractFlushingEventListener.FlushEverythingToExecutions(FlushEvent event)
at NHibernate.Event.Default.DefaultFlushEventListener.OnFlush(FlushEvent event)
at NHibernate.Impl.SessionImpl.Flush()
at NHibernate.Transaction.AdoTransaction.Commit()
</code></pre>
<p>I've read a little bit about the internals of replication, where some people suggest that replicated tables have extra columns or randomised identifiers, but I was under the impression most of the behaviour would be transparent to consuming applications?</p>
<p>Anybody have any suggestions on how to work around this / fix this problem?</p>
http://stackoverflow.com/questions/1816600/saving-a-single-entity-instead-of-the-entire-context-revisited0Saving a single entity instead of the entire context - revisitednite2009-11-29T20:02:34Z2009-12-03T10:48:53Z
<p>I’m looking for a way to have fine grained control over what is saved using Entity Framework, rather than the whole ObjectContext.SaveChanges(). My scenario is pretty straight forward, and I’m quite amazed not catered for in EF – pretty basic in NHibernate and all other data access paradigms I’ve seen. I’m generating a bunch of data (in a WPF UI) and allowing the user to fine tune what is proposed and choose what is actually committed to the database. For the proposed entities I’m:</p>
<ol>
<li>getting a bunch of reference entities (eg languages) via my objectcontext, </li>
<li>creating the proposed entities and assigning these reference entities to them (as navigation properties), so by virtue of their relationship to the reference entities they’re implicitly added to the objectconext </li>
<li>Trying to create & save individual entites based on the proposed entities. </li>
</ol>
<p>I figure this should be really simple & trivial but everything I’ve tried I’ve hit a brick wall, either I set up another objectcontext & add just the entity I need (it then tries to add the whole graph and fails as it’s on another objectcontext). I’ve tried MergeOptions = NoTracking on my reference entities to try to get the Attach/AddObject not to navigate through these to create a graph, no avail. I've removed the navigation properties from the reference entities. I've tried AcceptAllChanges, that works but pretty useless in practice as I do still want to track & save other entities. In a simple test, I can create 2 of my proposed entities, AddObject the one I want to save and then Detach the one I dont then call SaveChanges, this works but again not great in practice. Following are a few links to some of the nifty ideas which in the end don’t help in the end but illustrate the complexity of EF for something so simple. I’m really looking for a SaveSingle/SaveAtomic method, and think it’s a pretty reasonable & basic ask for any DAL, letalone a cutting edge ORM.</p>
<ul>
<li><a href="http://stackoverflow.com/questions/1301460/saving-a-single-entity-instead-of-the-entire-context">http://stackoverflow.com/questions/1301460/saving-a-single-entity-instead-of-the-entire-context</a></li>
<li>www.codeproject.com/KB/architecture/attachobjectgraph.aspx?fid=1534536&df=90&mpp=25&noise=3&sort=Position&view=Quick&select=3071122&fr=1</li>
<li>bernhardelbl.spaces.live.com/blog/cns!DB54AE2C5D84DB78!238.entry</li>
</ul>
http://stackoverflow.com/questions/1838128/schemaupdate-does-not-drop-tables-or-delete-columns0SchemaUpdate does not drop tables or delete columnsZuber2009-12-03T06:45:47Z2009-12-03T07:13:46Z
<p>I am using SchemaUpdate to make changes to the database based on some configuration.
It works fine when new tables or columns are added.
However, it does not work when columns are deleted or tables are dropped.
The mapping file does reflect these changes, but the SchemaUpdate does not seem to recognize this.
I don't want to drop the tables and recreate them, as I want the data to be retained.</p>
<p>Does anyone know if this 'Delete and Drop' functionality is supported by SchemaUpdate?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1829776/help-building-castle-dynamic-proxy1help building castle dynamic proxymrblah2009-12-01T23:50:33Z2009-12-03T07:05:36Z
<p>So I pulled the source from <a href="https://svn.castleproject.org/svn/castle/DynamicProxy/trunk/" rel="nofollow">https://svn.castleproject.org/svn/castle/DynamicProxy/trunk/</a></p>
<p>Open it up in vs.net 2008</p>
<p>problems:</p>
<ol>
<li>vs.net can't open the assembly.cs</li>
<li>assembly signing failed</li>
</ol>
<p>What am I doing, rather NOT doing?</p>
<p><b>Update</b></p>
<p>So I downloaded nant, setup the .bat file in my PATH so it works in cmd prompt.</p>
<p>I ran:</p>
<p>nant default.build</p>
<p>Getting this error:</p>
<p>build failed, \buildscripts\common-project.xml (48,3)
invalid element . Unknown task or datatype.</p>
<p>How exactly do I build the dynamicProxy project now?</p>
http://stackoverflow.com/questions/1837601/nhibernate-many-to-many-is-deleting-all-associations-before-inserting0NHibernate Many-To-Many Is Deleting All Associations Before InsertingKevin Pang2009-12-03T04:16:33Z2009-12-03T04:50:01Z
<p>I have a Users table and a Networks table with a many-to-many relationship between them (a user may be long to multiple networks and a network may contain many users). The many-to-many relationship is held in a "UserNetworks" table that simply has two columns, UserId and NetworkId.</p>
<p>My classes look like this:</p>
<pre><code>public class User
{
public IList<Network> Networks {get; set;}
}
public class Network
{
public IList<Usre> Users {get; set;}
}
</code></pre>
<p>The NHibernate mappings for these many-to-many collections looks like this:</p>
<p>User.hbm.xml:</p>
<pre><code><bag name="Networks" table="UserNetworks" cascade="save-update" inverse="true">
<key column="UserId" />
<many-to-many class="Network" column="NetworkId" />
</bag>
</code></pre>
<p>Network.hbm.xml:</p>
<pre><code><bag name="Users" table="UserNetworks" cascade="save-update">
<key column="NetworkId" />
<many-to-many class="User" column="UserId" />
</bag>
</code></pre>
<p>In my code, I create an association between a user and a network like so:</p>
<pre><code>user.Networks.Add(network);
network.Users.Add(user);
</code></pre>
<p>I would expect the SQL run to simply perform one INSERT to the UserNetworks table. Instead, it executes a DELETE on the UserNetworks table with NetworkID = X, then proceeds to reinsert all the UserNetworks rows back in along with the new association.</p>
<p>What am I doing wrong?</p>
http://stackoverflow.com/questions/1832394/after-upgrading-to-castle-trunk-and-nhibernate-2-1-0-4000-my-integration-tests-cr1After upgrading to Castle Trunk and NHibernate 2.1.0.4000 My Integration tests crash TestDriven.NetBittercoder2009-12-02T11:38:24Z2009-12-03T04:03:19Z
<p>I have an old MonoRail/ActiveRecord I've been doing some work too.</p>
<p>Recently I decided to upgrade the application to Castle Trunk & NHibernate 2.1.0.4000 GA and I'm now finding a few issues with running tests:</p>
<p>First off - When using TestDriven.Net to run the integration tests that work against the database, it's crashing TestDriven.Net altogether, or all the tests complete execution, then TestDriven.Net hangs. This never happened prior to the upgrade.</p>
<p>When TestDriven.Net crashes, here's what gets written to the event log:</p>
<blockquote>
<p>Fault bucket 1467169527, type 1
Event Name: APPCRASH
Response: Not available
Cab Id: 0</p>
<p>Problem signature:
P1: ProcessInvocation86.exe
P2: 2.22.2468.0
P3: 4a26845c
P4: KERNELBASE.dll
P5: 6.1.7600.16385
P6: 4a5bdbdf
P7: e053534f
P8: 0000b727
P9:
P10: </p>
</blockquote>
<p>Second thing - Exceptions are being logged when proxy classes are being Finalize()'d, as below - it seems to be once this is logged a couple of times, that is when TestDriven.Net crashes.</p>
<p>Here's the stack trace for the exception:</p>
<pre><code>NHibernate.LazyInitializationException:
Initializing[MyApp.Core.Models.TestExecutionPackage#15d9eb96-faf0-4b4b-9c5c-9cd400065430]-Could not initialize proxy - no Session.
at NHibernate.Proxy.AbstractLazyInitializer.Initialize()
at NHibernate.Proxy.AbstractLazyInitializer.GetImplementation()
at NHibernate.ByteCode.Castle.LazyInitializer.Intercept(IInvocation invocation)
at Castle.DynamicProxy.AbstractInvocation.Proceed()
at Castle.Proxies.TestExecutionPackageProxy.Finalize()
</code></pre>
<p>The same behaviour will also crash MsBuild on our CI Server.</p>
<p>What's really odd is that in theory exceptions thrown in Finalize() should be swallowed as per the MSDN docs:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.object.finalize%28VS.71%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.object.finalize%28VS.71%29.aspx</a></p>
<p>If <strong>Finalize</strong> or an override of <strong>Finalize</strong> throws an exception, the runtime ignores the exception, terminates that <strong>Finalize</strong> method, and continues the finalization process.</p>
<p>Thoughts anyone?</p>
http://stackoverflow.com/questions/1837208/t-sql-convert-equivalent-in-nhibernate-mappings-for-varbinary-to-varchar0T-SQL CONVERT() Equivalent in NHibernate Mappings for VARBINARY to VARCHARMattio2009-12-03T02:01:33Z2009-12-03T02:08:54Z
<p>I'm building an ASP.NET web application using NHibernate and a legacy database. In that database are fields of HTML stored as VARBINARY(MAX). The existing queries cast that data using CONVERT(VARCHAR(MAX), mainText). How can I do the same using NHibernate's HBM mapping?</p>
http://stackoverflow.com/questions/1835646/connect-nhibernate-to-different-databases-with-same-schema1Connect NHibernate to different databases with same schemaThad2009-12-02T20:41:17Z2009-12-03T01:49:37Z
<p>We are in the process of splitting our db into several smaller ones. The schemas will be exactly the same and we will control which db the system connects to when the client logs in. I receive an error if I do not set a connection string in my nhibernate configuration. I do not want to create a factory for each db. Is it possible to have a session factory provide a Session that I can set the connection string before using it?</p>
http://stackoverflow.com/questions/1831504/how-can-i-use-expression-not-with-text-field0How can I use "Expression.Not" with text field?VoimiX2009-12-02T08:41:47Z2009-12-03T00:07:27Z
<p>How can I use "Expression.Not" with text field?</p>
<p>I need to select all records from NHQuestionCount except "ktest"</p>
<p>for example this code return runtime error</p>
<pre><code>NHQuestionCount[] stats = NHQuestionCount.FindAll(Order.Asc("NameFull"), Expression.Not(Expression.Eq("NameFull", "ktest")));
</code></pre>
http://stackoverflow.com/questions/1835050/storing-an-ordered-child-collection-in-nhibernate0Storing an ordered child collection in NHibernateAndrew Bullock2009-12-02T18:57:42Z2009-12-02T23:53:30Z
<p>I'm having trouble getting my head around the way I should implement an ordered child relationship with NH.</p>
<p>In the code world, I have:</p>
<pre><code>class Parent
{
public Guid Id;
public IList<Child> Children;
}
class Child
{
public Guid Id;
public Parent Parent;
}
</code></pre>
<p>A <code>Parent</code> has a list of <code>Child[ren]</code> with an order. In reality, the <code>Children</code> collection will contain unique <code>Child</code>s which will be enforced by other code (i.e. it will never be possible to add the same child to the collection twice - so i dont <em>really care</em> if the NH collection enforces this)</p>
<p>How should I implement the mappings for both classes?</p>
<p>From my understanding:</p>
<ul>
<li><code>Bags</code> have no order, so i dont want this</li>
<li><code>Sets</code> have no order, but i could use <code>order-by</code> to do some sql ordering, but what do i order by? I can't rely on a sequential ID. so i dont want this?</li>
<li><code>Lists</code> are a duplicate-free collection, where the unique-key is the <code>PK</code> and the <code>index</code> column, so i do want this?</li>
</ul>
<p>So, using a <code>list</code>, i have the following:</p>
<pre><code><list cascade="all-delete-orphan" inverse="true" name="Children">
<key>
<column name="Parent_id" />
</key>
<index>
<column name="SortOrder" />
</index>
<one-to-many class="Child" />
</list>
</code></pre>
<p>When I insert a parent which a child on it, i see the following SQL:</p>
<pre><code>Insert into Child (id, Parent_id) values (@p0, @p1)
</code></pre>
<p>I.e, why doesn't it insert the SortOrder?</p>
<p>If I do a <code>SchemaExport</code> the SortOrder column is created on the Child table.</p>
<p>:(</p>
<p>If I set <code>Inverse="false"</code> on the relationship, i see the same SQL as above, followed by:</p>
<pre><code>UPDATE "Child" SET Parent_id = @p0, SortOrder = @p1 WHERE Id = @p2
</code></pre>
<p>Why does it still <code>INSERT</code> the Parent_id with <code>inverse="false"</code> and why doesn't it insert the SortOrder with <code>inverse="true"</code>?</p>
<p>Am I approaching this totally wrong?</p>
<p>Is it also true that assuming this was working, if I were to do:</p>
<pre><code>parentInstance.Children.Remove(parentInstance.Children[0]);
</code></pre>
<p>save the parent and reload it, that the <code>list</code> would have a null in position 0, instead of shuffling the rest up?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1834548/help-in-building-nhibernate-from-source0Help in building nhibernate from sourcemrblah2009-12-02T17:34:36Z2009-12-02T23:27:36Z
<p>I downloaded nant 0.86 beta which seems to be the latest release.</p>
<p>Now running:</p>
<p>nant default.build I get this error:</p>
<p>detected nant 0.86 beta 1, consider upgrading to a newer version when building for .net 3.5</p>
<p>default.build does not exist in this project</p>
<p>What am I doing wrong here?</p>
<p><b>Update</b>
downloaded the nighly build, now running:</p>
<p>nant default.build</p>
<p>I get this error:</p>
<p>[script] scanning assembly "_bzhbyr9" for extensions</p>
<p>build failed</p>
<p>target 'default.build' does not exist in this project</p>
http://stackoverflow.com/questions/1835244/nhibernate-in-asp-net-isession-help0Nhibernate in asp,net ISession helpunknown (yahoo)2009-12-02T19:28:14Z2009-12-02T23:24:13Z
<p>We're using nhibernate in and asp.net MVC application.</p>
<p>We are implementing the Session per Request pattern, via a httpModule.</p>
<p>It looks pretty straight forward, but when we run with NHibernate Profiler, it clearly shows that the
sessions are never getting closed.</p>
<p>the pattern seems straight forward...but I don't understand why the sessions are never closing.</p>
<p>here's the code i think is important.</p>
<p>set up the event handler:</p>
<pre><code> context.EndRequest += new EventHandler(this.context_EndRequest);
</code></pre>
<p>in the handler dispose the Session</p>
<pre><code>private void context_EndRequest(object sender, EventArgs e)
{
netLogHdl.ArchDebug("NHibernateHttpModule.context_EndRequest() ");
Dispose(0);// we are hitting 2 dbs and thus keep one session for each.
Dispose(1);
HttpContextBuildPolicy.DisposeAndClearAll();
}
private void Dispose(int sessionIndex)
{
netLogHdl.ArchStart("NHibernateHttpModule.Dispose", "int sessionIndex=\" + sessionIndex + \")");
try
{
//close the DB session
string sessManagerName = "";
string jcdcManager = "JCDC Manager";
string spamisManager = "Spamis Manager";
if (sessionIndex == 0)
sessManagerName = jcdcManager;
else
{
sessManagerName = spamisManager;
}
ISession oneSession = sessionPerDB[sessionIndex];
if (oneSession != null)
{
if (sessManagerName == jcdcManager) netLogHdl.ArchDebug(sessManagerName + " oneSession is NOT null");
if (oneSession.IsOpen)
{
// Don't flush - all saves should use transactions and calling Commit does the flush.
if (sessManagerName == jcdcManager) netLogHdl.ArchDebug(sessManagerName + " Closing the session");
//This will overrite it with the exact same session, if they don't match something weird is going on - EWB
oneSession = CurrentSessionContext.Unbind(factoryPerDB[sessionIndex]);
oneSession.Close();
}
else
{
if (sessManagerName == jcdcManager) netLogHdl.ArchDebug(sessManagerName + " Session is NOT open");
}
//if ( sessManagerName == jcdcManager ) netLogHdl.ArchDebug( sessManagerName + " Session got Dispose()-ing" );
//oneSession.Dispose();
}
else
{
if (sessManagerName == jcdcManager) netLogHdl.ArchDebug(sessManagerName + " Session is NULL");
}
sessionPerDB[sessionIndex] = null;
}
catch (Exception)
{
throw;
}
netLogHdl.ArchEnd();
}
</code></pre>
<p>Can anyone point me in the right direction? What shoud I look at, is the pattern not implemented correclty?</p>
<p>I'm flummoxed</p>
<p>Thanks!</p>
<p>E-</p>