Click here to Skip to main content
15,885,309 members
Home / Discussions / C#
   

C#

 
GeneralRe: I've programmed Myself Into A Corner Pin
Roger Wright2-Feb-11 6:44
professionalRoger Wright2-Feb-11 6:44 
GeneralRe: I've programmed Myself Into A Corner Pin
OriginalGriff2-Feb-11 8:15
mveOriginalGriff2-Feb-11 8:15 
GeneralRe: I've programmed Myself Into A Corner Pin
Roger Wright2-Feb-11 14:33
professionalRoger Wright2-Feb-11 14:33 
GeneralRe: I've programmed Myself Into A Corner Pin
OriginalGriff2-Feb-11 21:17
mveOriginalGriff2-Feb-11 21:17 
GeneralRe: I've programmed Myself Into A Corner Pin
PIEBALDconsult2-Feb-11 13:21
mvePIEBALDconsult2-Feb-11 13:21 
QuestionGraph schedule for hotel menagment system Pin
nighttrain_1-Feb-11 12:08
nighttrain_1-Feb-11 12:08 
AnswerRe: Graph schedule for hotel menagment system Pin
RobCroll1-Feb-11 12:28
RobCroll1-Feb-11 12:28 
GeneralRe: Graph schedule for hotel menagment system [modified] Pin
nighttrain_1-Feb-11 12:36
nighttrain_1-Feb-11 12:36 
i will have a data_from, data_to in, number_of_people register table the colors will declare in other one i think and the room in other and buildings in other :/
In C# i will have .cs files which represents entities and mapping classes for this entities .
But could u write some example how it could be? I Will really happy Wink | ;) I heard somewhere that lv will be better than dg...

BTW if I will use Flunet NHibernate and LINQ NH + mapping should I make in My MySQL Server relations on Entities (i mean in MySQL Server) or just make entities and PK's but in VS Entities .cs files and mapping it will be enough ?:
for example:
public class ClientMap : ClassMap<Client>
    {
        public ClientMap()
        {
            Id(x => x.Id).Column("client_id");
            Map(x => x.FirstName).Column("imie");
            Map(x => x.LastName).Column("nazwisko");
            Map(x => x.Created).Column("utworzony").Not.Nullable();
            Map(x => x.Updated).Column("aktualizacja");
            Map(x => x.Deleted).Column("Usuniety");

            HasMany(x => x.Rooms)
                .Access.Property()
                .Cascade.All()
                .LazyLoad()
                .KeyColumn("client_id");

            Table("klient");
        }}

modified on Tuesday, February 1, 2011 6:45 PM

GeneralRe: Graph schedule for hotel menagment system Pin
RobCroll1-Feb-11 12:46
RobCroll1-Feb-11 12:46 
QuestionProblem with socket.recieve() , when the clent disconnect Pin
prasadbuddhika1-Feb-11 6:32
prasadbuddhika1-Feb-11 6:32 
AnswerRe: Problem with socket.recieve() , when the clent disconnect Pin
jschell1-Feb-11 10:34
jschell1-Feb-11 10:34 
GeneralRe: Problem with socket.recieve() , when the clent disconnect Pin
Ennis Ray Lynch, Jr.1-Feb-11 10:57
Ennis Ray Lynch, Jr.1-Feb-11 10:57 
GeneralRe: Problem with socket.recieve() , when the clent disconnect Pin
jschell1-Feb-11 13:59
jschell1-Feb-11 13:59 
GeneralRe: Problem with socket.recieve() , when the clent disconnect Pin
Ennis Ray Lynch, Jr.1-Feb-11 15:11
Ennis Ray Lynch, Jr.1-Feb-11 15:11 
GeneralRe: Problem with socket.recieve() , when the clent disconnect Pin
jschell2-Feb-11 8:10
jschell2-Feb-11 8:10 
GeneralRe: Problem with socket.recieve() , when the clent disconnect Pin
Ennis Ray Lynch, Jr.2-Feb-11 9:32
Ennis Ray Lynch, Jr.2-Feb-11 9:32 
GeneralRe: Problem with socket.recieve() , when the clent disconnect Pin
jschell3-Feb-11 9:28
jschell3-Feb-11 9:28 
AnswerRe: Problem with socket.recieve() , when the clent disconnect Pin
jschell1-Feb-11 14:13
jschell1-Feb-11 14:13 
Questionoverloading Console.write() [modified] Pin
KARFER1-Feb-11 5:03
KARFER1-Feb-11 5:03 
AnswerRe: overloading Console.write() Pin
Pete O'Hanlon1-Feb-11 5:06
mvePete O'Hanlon1-Feb-11 5:06 
GeneralRe: overloading Console.write() Pin
KARFER1-Feb-11 5:11
KARFER1-Feb-11 5:11 
GeneralRe: overloading Console.write() Pin
Pete O'Hanlon1-Feb-11 5:12
mvePete O'Hanlon1-Feb-11 5:12 
AnswerRe: overloading Console.write() Pin
Not Active1-Feb-11 5:48
mentorNot Active1-Feb-11 5:48 
QuestionRe: overloading Console.write() Pin
TheGreatAndPowerfulOz1-Feb-11 7:13
TheGreatAndPowerfulOz1-Feb-11 7:13 
AnswerRe: overloading Console.write() Pin
Eddy Vluggen1-Feb-11 7:34
professionalEddy Vluggen1-Feb-11 7:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.