|
|
Browse by Tags
All Tags » dotnet (RSS)
Showing page 1 of 2 (16 total posts)
-
There is a challenge going on at the PowerShell Podcast (http://www.powerscripting.net) in Episode 46 (the current episode as of this writing) for anyone who can get Db4O working with Microsoft Powershell. The guys hosting the podcast are giving away a prize to anyone who can accomplish the task.
For those who are not familiar with ...
-
Hi!
A very interesting PDC talk (by Anders Hejlsberg) about the future of C#.
As a teaser, just some subjects covered in the this talk:
More dynamic constructs
Optional / Named arguments
Concurrency
If you work with C#/.Net you can't miss this one!
Adriano
-
C# 4.0: Meet the Design Team
Have fun
Adriano
-
Hi!
Today I got an ''job opportunity'' from one of jobs sites I'm registered (no, I'm not looking for a new job, I just didn't unregistered) with a really intriguing subject:
A skilled professional with 3 years of experience in C, Sharp and VB.NET.
I have to admit that I do know C and also a little of VB.NET, but I have never seen SHARP :)
Ok, ...
-
Hi.
This will be a very short, but I hope useful, post!
Of course I usually do a google search when I want to find some system/programing tools.
Also I do keep an eye on some pretty helpful sites:
The Free Country (www.thefreecountry.net)
Source Forge (www.sourceforge.net)Codeplex (www.codeplex.com)Fresgmeat (freshmeat.net/)One site that I ...
-
In my last post I proposed to derive field names from a property accessor in order to gain type safety and compiler support when configuring some aspects of D4bo.
So, given the following class:public class Test
{
private int _age;
public int Age
{
get { return _age; }
set { _age = value; }
}
}we could use the following ...
-
As of today, Db4o uses strings to reference fields in some scenarios such: SODA queries Configuration See the sample bellow: IConfiguration cfg = Db4oFactory.NewConfiguration();
cfg.ObjectClass(typeof(Test)).ObjectField(''_age'').Indexed = true;IMHO, using strings in these situations is sub-optimal as:
Such solution relies in ...
-
In this post we'll implement a very basic Linq Console application that supports ''ad hoc'' queries allowing users to enter Linq queries and run them against a db4o database. Our main goal is to show how such mechanism can be implemented on top of Linq/Db4o.
That said, let's play with the application for a while and them dig a little bit in its ...
-
Visual Studio 2008 has been released (Yep, I'm downloading it right now :)
Niiice.
-
Well, me too, at least until one month ago :)
Seriously, a long time ago (maybe not so long), Rodrigo, a great friend of mine, started talking about write a new language for the .Net platform. Of course, I promptly ignored him, after all, who needs another computer language? Some time passed and I started to hear about a new language called ...
1
|
|
|