Skip to content

Commit

Permalink
add to DataTypes code
Browse files Browse the repository at this point in the history
  • Loading branch information
ati-ozgur committed Dec 30, 2024
1 parent 020c3ff commit 3d8c84e
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions Karkas.Examples/TestCSharp/Programs/ProgramDataTypesSqlServer.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@

ConnectionHelper.SetupDatabaseConnection();

ConnectionHelper.SetupDatabaseConnection();

int pk = 1;




Deneme d1= new Deneme();
d1.BitColumn = false;


var pk = bs.Insert(d1);
Console.WriteLine("pk" + pk);
Console.WriteLine("Simple Insert works");

DenemeBs bs = new DenemeBs();
var l1 = bs.QueryAll();

Console.WriteLine(l1);

0 comments on commit 3d8c84e

Please sign in to comment.