Hello,
I would like to create an Entity Framework 4.0 context when a call is received and invoke to save changes when it finish, (something like JPA).
I think it is a good idea because I can use the state for all the call, It is short and encapsulate enogh to be threadsafe and long enough for caching calls and the context itself.
Any idea how is the best way for implement this?
I would like to achieve the following: I want a free Application Lifecycle Management (ALM) environment surrounding vs2008 sp1. (My company is short of cash).
I want all the stuff: CI, BugTracking, task panel, Wiki, Source control... all integrating themselves. If I could have some kind of scrum managing tools it would be better.
Any recommendation?
Thanks in advance.
Hello,
I would like to know how to detect that a node is not present in the origin. I have tried hundreds of things with the logical functoids with no success.
The third case of this page is what I am looking for:
http://danshultz.blogspot.com/2007/08/logical-existence-isnil-empty-string.html
Thanks in advance.
Hello,
Is there a way of achieve the following transformation in the BT mapper? if not, any smart idea?
<Person>
<Age>25</Age>
<Name>Paul</Name>
</Person>
to:
<Person>
<CustomProperties>
<CustomProperty>
<Name>Age</Name>
<Value>25</VAlue>
</CustomProperty>
<CustomProperty>
<Name>Name</Name>
<Value>Paul</VAlue>
</CustomProperty>
</CustomProperties>
I have to aggregate a few elements in a list of nodes.
Thanks in advance.
Hello everyone,
I would like to achieve the following: all the workflows created should have the same structure (validation, execution, save results), and all the developers should implement those three stages (maybe leaving it empty). Similar to inheritance with abstract methods.
Any ideas?