|
|
browse.develop.com
Browse.develop.com is a community that was established to collect and
organize valuable web information. Our technical staff have selected and
indexed information and courses that they feel will help you stay
current on best practices across the SDLC.
|
44 Articles match "Functionality"
|
Related DevelopMentor Courses
|
MORE
|
|
Essential LINQ with the Entity Framework
With SQL-like syntax (from, where, select, orderby, group by), we can leverage an assortment of query operators to perform join, partition, conversion, and aggregation functions. In this course, you learn to: Leverage new features of C# 3.0, including extension methods and lambda expressions Use LINQ to filter, sort, and group in-memory collections of objects Create LINQ to SQL queries to execute SQL Server stored procedures and perform updates in real-world database applications Write LINQ to XML queries to search XML documents and save them to the file system Build a rich conceptual entity model
DevelopMentor Courses
- Friday, June 12, 2009
SharePoint for Developers (WSSv3/MOSS2007)
Deployment with the Feature and Solution Framework Windows SharePoint Services v2 provided little in terms of deploying functionality built by developers into the SharePoint environment. Day 2 Programming with the Object Model In order to develop and customize functionality in WSS and MOSS, we must be able to gain access to all the various objects through the API. We learn to build sophisticated Utilize the WSS object model for building applications in SharePoint Build custom workflow solutions for SharePoint Create custom event handlers Use features and solutions for deploying projects for WSS and MOSS Build standard web parts and web parts utilizing AJAX Handle custom authentication solutions Implement best practices for building solutions with WSS and MOSS Leverage the Business Data Catalog Create custom lists that use custom content types Essential SharePoint for Developers (WSSv3/MOSS2007) covers the critical building blocks for developing solutions for both Windows SharePoint Services
DevelopMentor Courses
- Friday, June 12, 2009
Essential Spring 2.5 and Hibernate
The framework's structure supports the layering of functionality such as persistence, transactions, view-oriented frameworks, and enterprise systems and capabilities.? Explain how the issues associated with object persistence in a relational model are addressed by Hibernate Understand the relationships between SQL, Java, Spring, and Hibernate Discuss the challenges to adopting Hibernate in the enterprise Write applications that take advantage of the Hibernate Persistence Manager. Map Java classes to relational tables.
DevelopMentor Courses
- Friday, June 12, 2009
|
130 Articles match "Functionality"
|
The Latest from DevelopMentor
|
MORE
|
|
Translating Software Maintainability Metrics into dollars
code is a company which offers services around providing insight into the functioning,
quality, Nowadays there are a variety of tools and services available that provide insight
into into the quality of the code. In order to quantify quality a number of metrics are
collected
The Blomsma Code
- Tuesday, March 9, 2010
Creating Rich Composite Activities
lets start with the core functionality then we’ll look at each of the pieces that
help That really is the “functional” part of the activity – everything else is there to
support far as the designer is concerned, this is the interesting functionality – lets
take I my last
post post I showed that creating a custom composite activity (one that can have one
or
.NET Meanderings
- Sunday, February 14, 2010
NativeActivity – A Tricky Beast
know, for example, that part of your functionality is there purely for implementation
details I’m writing Essential
Windows Windows Workflow Foundation 4.0 with Maurice for DevelopMentor .
One One of the things that I think is less than obvious is the behavior of NativeActivity.
What
.NET Meanderings
- Tuesday, February 9, 2010
|
-
|
The Best from DevelopMentor
|
MORE
|
-
Marshalling native function pointers
Recently, a customer asked me how to marshal function pointers across managed / unmanaged
of a pitfall specific to marshaling function pointers, the job can be quite easy.
In my book I focus on wrapping class libraries that use virtual functions for callbacks
instead of Now that the book is written and all urgent tasks I had to defer due to the book are
done, I find some time to blog about technical topics.
Marcus' Blog
- Friday, April 6, 2007
-
Mixed mode DLLs: Problem with public functions using native types as arguments
interesting question : Why can't I call a function having arguments of a native
int main()
{
std::string s;
Conversions::S2S("asdf", s);
}
If you try to compile this code, you will get a disappointing error message:
error C3767: 'Conversions::S2S': candidate function(s) not accessible
Why is a public static function S2S of a public type Convesions not accessible?
outside the assembly In news://msnews.microsoft.com/microsoft.public.dotnet.languages.vc Edward
Diener asked
Marcus' Blog
- Tuesday, March 21, 2006
-
Can DLLs export managed functions to native clients?
extern "C" __declspec(dllexport) void __stdcall f()
{
System::Console::WriteLine("I am f(), a managed function that test.dll exports
to native clients");
}
"dumpbin /exports test.dll" will show you that there is indeed a native exported function:
ordinal hint RVA name
1 0 00001020
_f@0
void f()
{
System::Console::WriteLine("I am f(), On microsoft.public.dotnet.languages.vc ,
bonk has asked this interesting question.
Marcus' Blog
- Wednesday, October 19, 2005
-
Rehosting the Workflow Designer in WF4
But possible is about all there was to say about it as it was pretty hard to do anything beyond the basics. With Windows Workflow Foundation 4 live has become much better on the rehosting front In fact it is possible to create the fully functional and useful workflow editor below in about 200 lines of code. And loading or saving a workflow is easy to, all it takes is a Load() and Save() function pointing to a XAML file. Note: This blog post is written using the .NET NET framework 4.0
The Problem Solver
- Wednesday, December 23, 2009
-
The new Windows Workflow Foundation 4 runtime
The same functionality in WF4 looks very different:
static void Main( string [] args)
{
WorkflowInstance myInstance = new WorkflowInstance( new Sequence1());
myInstance.OnCompleted += delegate (WorkflowCompletedEventArgs e)
{
Console.WriteLine( "The workflow has completed." With WF3 there was a central workflow runtime environment called the WorkflowRuntime and used to manage the lifetime of workflow instances. In WF4 this central class no longer exists and we manage individual workflows.
The Problem Solver
- Tuesday, June 23, 2009
-
Requirements not functionality
In Competitive Engineering Tom Gilb argues that development groups spend a lot of time focusing on functional requirements but they should actually focus on performance and quality requirements: “ From the point of view of understanding ‘competitiveness’, ‘levels of achievement’ and ‘associated risk’, the performance requirements are by far the most interesting requirements. Yet, traditionally, too much attention has been given to specification of functional requirements and resource requirements.” A footnote to the recent discussion of requirements.... Tom Gilb, 2005 Put
Allan Kelly's Blog
- Friday, February 27, 2009
-
Windows Workflow Foundation 4 and persistence
The callback is just another function so you can make whatever decisions you like.
app.PersistableIdle = e => PersistableIdleAction.Persist;
The whole persistence model has changed quite a but for WF4. The persistence class out of the box is called SqlWorkflowInstanceStore and as the name suggests it saves workflow data in either SQL Server 2005 or 2008. It is based on the InstanceStore class to if you prefer some other store all you need to do is subclass the InstanceStore and create your own. So what can we do with the SqlWorkflowInstanceStore?
The Problem Solver
- Thursday, November 19, 2009
|
|
|