Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
Kivii.Biz.Samples.V4.5
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
陶然
Kivii.Biz.Samples.V4.5
Commits
3474eae0
Commit
3474eae0
authored
May 06, 2025
by
Neo Turing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化
parent
466ba6e8
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
AssemblyInfo.cs
Src/Properties/AssemblyInfo.cs
+2
-2
RestfulSample.cs
Src/Transforms/RestfulSample.cs
+3
-3
No files found.
Src/Properties/AssemblyInfo.cs
View file @
3474eae0
...
...
@@ -37,5 +37,5 @@ using System.Runtime.InteropServices;
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
//通过使用 "*",如下所示:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("5.4.2025.42
5
0")]
[assembly: AssemblyFileVersion("5.4.2025.42
5
0")]
[assembly: AssemblyVersion("5.4.2025.42
9
0")]
[assembly: AssemblyFileVersion("5.4.2025.42
9
0")]
Src/Transforms/RestfulSample.cs
View file @
3474eae0
...
...
@@ -438,7 +438,7 @@ namespace Kivii.Samples.Transforms
if
(
BizKvid
!=
Guid
.
Empty
)
{
var
queryRootSample
=
conn
.
From
<
Sample
>();
queryRootSample
.
Where
(
o
=>
o
.
BizKvid
==
BizKvid
&&
o
.
Type
==
SampleType
.
Master
);
queryRootSample
.
Where
(
o
=>
o
.
BizKvid
==
BizKvid
&&
o
.
Category
==
"Report"
);
rootSample
=
conn
.
Single
(
queryRootSample
);
if
(
rootSample
!=
null
)
{
...
...
@@ -454,7 +454,7 @@ namespace Kivii.Samples.Transforms
if
(
tidKvid
!=
Guid
.
Empty
)
{
var
queryRootSample
=
conn
.
From
<
Sample
>();
queryRootSample
.
Where
(
o
=>
o
.
BizKvid
==
tidKvid
&&
o
.
Type
==
SampleType
.
Master
);
queryRootSample
.
Where
(
o
=>
o
.
BizKvid
==
tidKvid
&&
o
.
Category
==
"Report"
);
rootSample
=
conn
.
Single
(
queryRootSample
);
if
(
rootSample
!=
null
)
{
...
...
@@ -466,7 +466,7 @@ namespace Kivii.Samples.Transforms
else
if
(!
BizId
.
IsNullOrEmpty
())
{
var
queryRootSample
=
conn
.
From
<
Sample
>();
queryRootSample
.
Where
(
o
=>
o
.
BizId
==
BizId
&&
o
.
Type
==
SampleType
.
Master
);
queryRootSample
.
Where
(
o
=>
o
.
BizId
==
BizId
&&
o
.
Category
==
"Report"
);
queryRootSample
.
OrderBy
(
o
=>
o
.
CreateTime
);
rootSample
=
conn
.
Single
(
queryRootSample
);
//var querySampleRootKvid = conn.From<Sample>();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment